I am a noob on this sort of thing. Have looked on web but info is pretty deep an there aren't many "just do this" pages.
I wish to use a site where when I POST information to the site it does whatever in the backend and returns a HTML page with text something like 1234|OK|success
I understand that I start with something like
But from there I have to confess to being completely lost. In fact I am certain that that isn't really right. Is there a tutorial anywhere?
Thanks in advance.
Steve
- I have fun with telemarketers
I wish to use a site where when I POST information to the site it does whatever in the backend and returns a HTML page with text something like 1234|OK|success
I understand that I start with something like
Code:
var url = encodeURIComponent('checkuser.php&var=something&var2=something else');
new Ajax.Request(url, {
method: 'post', onSuccess: function(transport) {
then parse transport.responseText
}
});
But from there I have to confess to being completely lost. In fact I am certain that that isn't really right. Is there a tutorial anywhere?
Thanks in advance.
Steve
- I have fun with telemarketers