How can i do for printing the value of an array given the numeric key for
example i have this code:
$array = array (
'VAL1' => "VALUE1",
'VAL2' => "VALUE2",
'VAL3' => "VALUE3"
)
So the only way i have found to print the value is like this :
echo $array['VAL1'];
and it prints = VALUE1 but i want to know if its possible to do it something
like this:
echo $array[0];
i mean give the numeric key for printing VALUE1 so instead the string key
(VAL1) use the numerc (0)
Thanks in advance!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php