I am stuck in my code, I need to send data from the form to the check.php page and then process it.
This is my code:
The AJAX part:
I just had the same problem: You have to unserialize the data on the php side.
Add to the beginning of your php file (Attention this short version would replace all other post variables):
parse_str($_POST["data"], $_POST);