maybe im forgetting some obscure PHP fact here... but...
<form action="<? $PHP_SELF ?>" method="GET">
probably isnt doing anything....
I would think you would need
<form action="<? echo $_SERVER['PHP_SELF'] ?>" method="GET">
$PHP_SELF was deprecated or however its spelt, when they turned REGISTER GLOBALS off by default in 4+