There are some sites where you have to register for something, anything, so the site asks you for: name, e-mail, pass, address... What I need to know is how can I fill this form automatically? I mean it doesn't have to open IE or anything. I think that this is done by listening the string that IE sends to that server or something. I really would like to know how to do this. What I want is have 5-6 .txt files and get from there the name, e-mail bla bla and sent that string to the server. How can I see that string that is transmited to the server? I am in programming for more than 10 years, I work in VC++, VC#, VB, php but never had to do such a thing and I don't know the whay this stuff works.
What I learned so far is that the name/value pairs of inputs can be either encoded directly into the url, like this or encoded into the body of the http request, which encoding to use depends on the method attribute specified in the form element.
How can I tell wich way the site transmites the input values?
Thank you in advance!
What I learned so far is that the name/value pairs of inputs can be either encoded directly into the url, like this or encoded into the body of the http request, which encoding to use depends on the method attribute specified in the form element.
How can I tell wich way the site transmites the input values?
Thank you in advance!