Post method http
got a web site that has the follwing source
so form takes two verables and then post them to the script.
Can I format a url so that is is some thing like
http://www.page.com/post_ number = xxxxx and message = yyyyyyyy
so it is automated, rather than going to the page filling in the fields and clicking the submit button.
Cheers
<html><form method="post">Number:<input type="text" name="number"/><br/>Message:<textarea cols="40" rows="4" name="message"></textarea><br/><input type="submit" value="send"/></form></html>
so form takes two verables and then post them to the script.
Can I format a url so that is is some thing like
http://www.page.com/post_ number = xxxxx and message = yyyyyyyy
so it is automated, rather than going to the page filling in the fields and clicking the submit button.
Cheers
- If you can't explain it simply, you don't understand it well enough. Albert Einstein
- An arrow can only be shot by pulling it backward. So when life is dragging you back with difficulties. It means that its going to launch you into something great. So just focus and keep aiming.
Linkin Profile - Blog: http://Devilwah.com
Comments
-
pram Member Posts: 171I doubt you can do that with any browser. You can send post data with curl though
curl --data "number=90&message=blah" whatever.com