Quote:
Originally Posted by Hawk552
Just wondering: does _POST work for data sent by URL, as you've done? I suspect that, if it does, it would be unreliable elsewhere since a browser would handle all of the post/form data internally.
|
This is the correct format for POST
Code:
POST /plugin_upload.php HTTP/1.0\n
User-Agent: HTTPTool/1.0\n
Content-Type: application/x-www-form-urlencoded\n
Content-Length: 512\n
\n
name=SomeName&authid=SomeId&reason=SomeText
You must be sure to put the correct Content-Length to avoid compatbility problems with web servers.
__________________