I must be blind or stupid
I have a form:
<form action="array.php" method="post">
Name: <input type="text" name="personal[name]"><br>
Email: <input type="text" name="personal[email]"><br>
Beer: <br>
<input type="submit">
the next page:
print_r says: Array ( [name] => martijn [email] => geen )
At least the array has arrived
I used to get the values some like $personal[name]
whatever i try the result is 0,0
$POST[personal[name]] (chrashed)
$POST[personal] -> name (chrashed)
$HTTP_POST_VARS[personal] -> name (chrashed)
$HTTP_POST_VARS[personal][name] (chrashed)
Am i stupid or is it just impossible?