Help with PHP+AJAX
Posted: Tue Sep 14, 2010 9:20 am
Hello all
I Have a problem with postvars + ajax + firefox (note: no ajax post request)
I have a form which I refresh it via ajax, but when i submit the form, firefox can't read the POST variables (form fields values)
in IE is working just fine
code structure:
----------------------------------------------------------
if ($_POST['SUBMIT_FORM'] == "YES") {
$value_1 = $_POST['value1']; //empty in firefox
$value_2 = $_POST['value2']; //empty in firefox
}
<form name="MyForm">
<div id="RefreshArea">
<input type="text" id="value1" name="value1" />
<input type="text" id="value2" name="value2" />
<input type="submit" value="Submit Form" />
</div>
<input type="hidden" id="SUBMIT_FORM" name="SUBMIT_FORM" value="YES" />
</form>
-------------------------------------------------------------
when i change via ajax the 2 fields in "RefreshArea" block and submit the form, the 2 posted values are empty (using firefox)
i tried to fix the problem by moving the whole form in div tag in order to refresh it via ajax but steal nothing....
Can anyone help please
Thanks in advance
I Have a problem with postvars + ajax + firefox (note: no ajax post request)
I have a form which I refresh it via ajax, but when i submit the form, firefox can't read the POST variables (form fields values)
in IE is working just fine
code structure:
----------------------------------------------------------
if ($_POST['SUBMIT_FORM'] == "YES") {
$value_1 = $_POST['value1']; //empty in firefox
$value_2 = $_POST['value2']; //empty in firefox
}
<form name="MyForm">
<div id="RefreshArea">
<input type="text" id="value1" name="value1" />
<input type="text" id="value2" name="value2" />
<input type="submit" value="Submit Form" />
</div>
<input type="hidden" id="SUBMIT_FORM" name="SUBMIT_FORM" value="YES" />
</form>
-------------------------------------------------------------
when i change via ajax the 2 fields in "RefreshArea" block and submit the form, the 2 posted values are empty (using firefox)
i tried to fix the problem by moving the whole form in div tag in order to refresh it via ajax but steal nothing....
Can anyone help please
Thanks in advance