im creating a website and id like to know how to allow ajax to submit form data rather than the html action. ive written a php script that may echo one of several results, and based on that echo, have ajax alert what action has been done by the php script.
for example, if php echo is == 1, alert("Your account has been created"); if it echo is == 2, alert("An account is already registered to that email address"); etc etc
ive got some limited experience with ajax from looking at examples and have created a very basic function that will probably be incorrect. just wondering if an ajax expert could fill in the details for me so i can have this functionality. it goes like this:
$("#createaccount").submit(function(){
$.ajax({
type: POST,
url: "createaccount2.php",
data:
success: function(server_response){
if(server_response == 0){
alert();
}
else if(server_response == 1){
alert();
}
else if(server_response == 2){
alert();
}
else if(server_response == 3){
alert();
}
});
});
