what is a array?
For instance, if we have an array like this:
$whatever = array(1,2,3,4);
Then we can access those values through $whatever[0], $whatever[1] and so on: those two respective contain 1,2 in this instance.
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How can I sort an array keeping the correlation between the index and value?how do i send the information from one page to another page using post method.
How can I create an array of numbers easily?
I'm shuffeling through numbers range(1, 10). Can I eval resulting random numbers and convert to appropriate text? 1 = username1, 2 = username2...etc?
How do I find out if a value is already in an array?
