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"...
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"...