Ajax form (?)

^ Not necessary

AJAX calls can be replicated by curl even though it does not execute the javascript itself. You just need to emulate what the javascript is doing. To see what it is doing, download a FF plugin called Live HTTP Headers (google it). Go to the website, open Live HTTP Headers, and submit the form. You will see all the requests happening. You need to find the right one - usually a POST request - and execute that with curl.

Boom, instant AJAX.
 
^ Not necessary

AJAX calls can be replicated by curl even though it does not execute the javascript itself. You just need to emulate what the javascript is doing. To see what it is doing, download a FF plugin called Live HTTP Headers (google it). Go to the website, open Live HTTP Headers, and submit the form. You will see all the requests happening. You need to find the right one - usually a POST request - and execute that with curl.

Boom, instant AJAX.

I've looked for such a plugin for months :) I think all i need to do was being a member of bhw, i'm going to be bhw-addict.
 
one of the best method is to install firebug and use it.
P.s firebug is a plugin for firefox
 
Back
Top