actually i dont understand why i get no access to the values of a array.
if i print a array i get this result
print_r($e)
Array
(
[FIELDNAME1] => MYTEXT
[FIELDNAME2] => MYTEXT2
)
now i want to access the field directly with
echo"Element 0".$e[0]."<br>";
echo"Element 1".$e[1]."<br>";
Under $e[0]
and $e[1]
I get no response (empty/nothing).
Why I can't get access to $e[0]
etc.?
Is there any way to get access with 0/1/2... for this array, background is that i dont know the names of the elements, so i have to access with 1 and 2.