HI
I would be interested too, as im searching the same.
as far as I know a post would look like this, but wheres the referrer set inthe header
and whats the exact synatx
thanx
$fp = ($host,80);
fputs($fp, "POST $path HTTP/1.1\n");
fputs($fp, "Host: $host\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\n");
fputs($fp, "Content-length: ".strlen($data_to_send)."\n");
fputs($fp, "Connection: close\n\n");
fputs($fp, $data_to_send);