SyntaxFix
Write A Post
Hire A Developer
Questions
Use a foreach loop, it loops through all the key=>value pairs:
foreach($array as $key=>$value){ print "$key holds $value\n"; }
Or to answer your question completely:
foreach($array as $value){ print $value."\n"; }