Simple Script
<?php
$host = "mysite.com";
$path = "/test.php";
$data = "drivingMeCrazy";
$data = urlencode($data);
header("POST $path HTTP/1.1\r\n" );
header("Host: $host\r\n" );
header("Content-type: application/x-www-form-urlencoded; charset=utf-8\r\n" );
header("Content-length: " . strlen($data) . "\r\n" );
header("Connection: close\r\n\r\n" );
header($data);
?>
When running this, my server just gives me Internal Error. All I need to do is just....POST. Nothing else. I don't need a response or anything.
Following Specs from here: http://www.sixapart.com/pronet/docs/trackback_spec.