Is there a way to select an array element by its key, without having to iterate through the set array_keys($arr) - ?
Thanks!
If you want to select an element by it's key all you do is this:
<?php
echo $array_name['KEY_NAME'];
?>
Where "KEY_NAME" is the key you have given to that element in the array.