Hello
I am submitting a form to a page for processing and I am having issues accessing the $_Post array.
When I do
echo print_r ($_POST);
I see this
Array ( [owner] => Array ( [0] => me ) [dob] => 2011-08-21 [XX] => aaaa [YY => asdas [registeredName] => Array ( [0] => norman ) [sex] => Array ( [0] => M ) [Age] => Array ( [0] => 42 ) [submit] => submit )
But when I try to access sex for example using this
$sex = mysql_real_escape_string ($_REQUEST['sex']);
echo print_r ($sex);
I get nothing
Any ideas?