SyntaxFix
Write A Post
Hire A Developer
Questions
In your PhP file there's going to be a variable called $_REQUEST and it contains an array with all the data send from Javascript to PhP using AJAX.
$_REQUEST
Try this: var_dump($_REQUEST); and check if you're receiving the values.
var_dump($_REQUEST);