Hello all! I'm hoping someone can help me with this, I'm tearing my hear off at the moment... 😉
My question is: How do I get the Index-keys [0] and [1] out in some form of parameter. I've tried key(), but that returns the [5],[6],[10] and [11] keys. Is there an easy way to do this?
The code looks like this:
$aTable[0] = array(5=>"abcde","1234");
$aTable[1] = array(10=>"fghij","5678");
echo"<pre>";
print_r ($aTable);
echo"</pre>";
...which results in this:
Array
(
[0] => Array
(
[5] => abcde
[6] => 1234
)
[1] => Array
(
[10] => fghij
[11] => 5678
)
)