How do I get all the values from an array? Just simply list out everthing that's in it, I mean. I know it's simple but I can't remember and all my reference books are at work... lol
MyArray = array(); for($index=0; $index < count($MyArray); $index++){ print("$MyArray[$index]<br>\n"); }
of course you will need to give the contents before you do that using like MyArray[]="blah";
print_r($myArray);
lol yeah I guess that works too