Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an HTML-form

<form method="POST" action="" name="myform" id="myform">
    <input type="text" name="email" id="email" />
    <input type="supmit" name="submit" id="submit"  value="submit" />
</form>

And a code of jQuery:

$(document).ready(function(){
    var validator = $("#myform").validate({
        ignore: ".ignore",
        rules: {...},
        messages: {...},
        submitHandler: function(form) {
            $.post('usr.php?resetpw', $(this).serialize(), function (data, textStatus) {
                form.submit();
                alert(data.inf);
            },'json');
        },
});

and also PHP-code usr.php that doesn't get $_POST-variables (isset($_POST['email']) = false)

if(isset($_GET['resetpw'])) {
    $loggingData = array(
        'inf' => utf8_encode("Your email address is: ".$_POST['email']),
        'errorEmail' => '',
        'mailExists' => '',
        'success' => '',
    );
}
echo json_encode($loggingData);

What is a correct code that post variables reached to PHP?

Thank you

share|improve this question
What kind of logging have you done? Have you checked the request in Firebug/Developer tools to see if the data is actually getting sent? Try $('#myform').serialize(), this may not be referring to the form inside that function. – Christian Varga Jun 2 '12 at 10:44
or use $(form).serialize() – Joy Jun 2 '12 at 10:46

3 Answers

up vote 2 down vote accepted

I just checked the source of validate plugin from here http://jquery.bassistance.de/validate/jquery.validate.js

and it's calling submitHandler like this

 validator.settings.submitHandler.call( validator, validator.currentForm );

Which means this will refer to the validator object not the form, so use the form argument to refer to the form and serialize it's fields like this

 $(form).serialize()
share|improve this answer

Serialize form not this . so submithandler will looks like below..

submitHandler: function(form) {
        $.post('usr.php?resetpw', $(form).serialize(), function (data, textStatus) {
            form.submit();
            alert(data.inf);
        },'json');
},
share|improve this answer
thank you for responses – iff Jun 2 '12 at 11:27
$("#form_id").trigger('submit');

try this

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.