tags:

views:

38

answers:

4

Is there a test site that allows me to feed in a URL and data that I want to be POSTed to that URL? I am testing a form submission thru curl in php and it doesn't seem to be working.

A: 

I do not know about site, but maybe its help you the firefox extension :

tamper data

its for view and modify HTTP/HTTPS headers and post parameters.

https://addons.mozilla.org/en-US/firefox/addon/966/

Haim Evgi
+1  A: 

You can use this http://www.htmlcodetutorial.com/cgi-bin/mycgi.pl

This CGI displays the name=value pairs sent to it. Feel free to use this CGI for practice making HTML forms. This CGI is provided compliments of the HTML Code Tutorial.
Bang Dao
+1  A: 

Download Fiddler:

http://www.fiddler2.com/

And you can create GET, POST, PUt requests with custom headers and view the results as RAW, HTML, Header info, XML, etc. Almost anything you want.

shamittomar
Interesting tool... thanks!
DrMHC
A: 

Very useful! Thx.

Pato