Das Script:
Der Fehler:
Aber ne andere Frage. Jetzt wird zusätzlich noch folgendes eingefügt:
Was muss ich machen damit das nicht angezigt wird?
PHP-Code:
<?php
$fp = fsockopen ("bf2web.gamespy.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
fputs ($fp, "GET /ASP/getplayerinfo.aspx?nick=sandmanEBC&info=&debug=tx&nocache=632555423584611697 HTTP/1.1\r\n");
fputs($fp,"Host: bf2web.gamespy.com\r\n");
fputs($fp,"Connection: close\r\n\r\n");
while (!feof($fp)) {
echo fgets($fp,128);
}
fclose($fp);
}
?>
HTTP/1.1 400 Bad Request Content-Type: text/html Date: Tue, 28 Jun 2005 16:27:52 GMT nnCoection: close Content-Length: 42
Bad Request (Invalid Header Name)
Bad Request (Invalid Header Name)
EDIT:
Argh hab den Fehler gefunden. Hab es oben korigiert.
Aber ne andere Frage. Jetzt wird zusätzlich noch folgendes eingefügt:
HTTP/1.1 200 OK Date: Tue, 28 Jun 2005 17:19:29 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 1.1.4322 Pragma: no-cache Set-Cookie: ASP.NET_SessionId=yigzjjrmkljozsemrap0p3qy; path=/ Cache-Control: private Expires: Tue, 28 Jun 2005 17:19:26 GMT Content-Type: text/html; charset=utf-8 Content-Length: 2476
Kommentar