moin,
::1 - - [28/Apr/2011:22:13:55 +0200] "POST /schach/index.php?page=myprofil.php HTTP/1.1" 200 4942 "http://localhost/schach/index.php?page=myprofil.php" "Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16"
::2 - - [28/Apr/2011:22:14:05 +0200] "POST /schach/index.php HTTP/1.1" 200 3145 "http://localhost/schach/index.php?page=myprofil.php" "Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16"
Dein Formular hat im Request_Uri den Path /schach (in diesem path wird das Formular aufgerufen)
der Post (Submit) hat in beiden Fällen den Status: 200 OK und geht in beiden Fällen an /schach/index.php
in beiden Fällen hat die Antwortseite den URI /index.php?page=myprofil.php (scheme, auth unbetrachtet)
im Fall ::1 gibt es beim Submit zusätzlich zu POST- auch GET-Parameter
in beiden Fällen müssen POST-Parameter in /schach/index.php verarbeitet werden
Die Antwortseite wird in beiden Fällen von /schach/index.php erzeugt.
Da es in der Antwortseite GET-Parameter gibt, sind diese von der Antwortseite zu verarbeiten, in Deinem Fall von /schach/index.php
Hotti