For a guide to the choosing ASP or PHP, click here
Home >> Arrays >> Creating an Array with Values This code is just an example of one way to create an array. In this example, we want an array to hold a few food items.
<% ' declare our array Dim arrFood ' now fill the array arrFood = Array("Apples", "Oranges", "Pears", "Grapes") %> What is ASP?
What is PHP?