$ajaxForm reply back from processing page using jquery and php
- by Jean
Hello,
I have a page called guestbook.php in which contains
$('#guest_form').ajaxForm({});
When the form is triggered it goes to a save.php page which contains and values inserted
if($_POST['x']){
$xx = $_POST['x'];
$yy = $_POST['y'];
$zz = $_POST['z'];
$query_one = "INSERT INTO xxx (x1,yl,z1,z2) values ('$xx','$yy','$zz','00000')";…