Hi,
I have a weird problem in that $_POST variables aren’t being sent when submitting a form.
The form has method=“post” but when I attempt to get the variables nothing is returning. I’ve tried:
<?
print_r($_POST);
?>and
<?
echo $_POST['field_name'];
?>In the first case an empty array is returned and nothing is returned in the second.
I’ve also tried echo $this->EE->input->post(‘field_name’); and still no joy.
PHP parsing is enabled and I can’t see any other errors.
Has anyone experienced anything similar?
Cheers