If the file taxi.php has just the words “Hello I’m from taxi”, then that’s what will come back in this script below. (Its like magic!)
$(document).ready(function() { $("#submitme").click(function() { alert("hi");
$.post("taxi.php", $("#plate").serialize(), function(data) { $("#formResponse").html(data); } ); return false;
}); });











