lets say I have an array...

$myArray = array (

"firstkey" => "first val",
"secondkey" => "second val"

)


Can I still call these by their numeric order? ie, echo $myArray[0] shoudl
print out "first val"...

Reply via email to