Quote:
Originally Posted by steve.callen
hi all,
How do I return all the values in an array? Please help me.
Thanks
|
Depends on which language you're talking about, but if it's PHP, print_r() and var_dump() will do it for you-
Code:
<?php
$fruits = array('orange', 'banana', 'grape', 'lemon');
print_r( $fruits ); //or
var_dump( $fruits );
?>
Without more information, that's all I can do.