Hi,
Below is my ajax code along with html and php code.
I am getting an error "title is not defined"..
Ajax
------
function callAjax() {
$.ajax ({
type: "POST",
url: "get.php",
data: "title=" + title,
success: function(msg) {
alert(msg);
},
error: function(msg){ alert(msg); },
});
}
HTML
------
<form method="post" onsubmit="callAjax();">
<div class=><label for="title">Title:</label><input type="text" name="title" /></div><br/>
<input type="submit" value="submit"></form>';
get.php
--------
<?php
$title = $_POST['title'];
echo $title;
?>