Hallo,
Auf den ersten Blick tippe ich mal register globals als Ursache. Hast du mal folgendes probiert?
if(isset($_GET['action']) && $_GET['action'])
{
$action = $_GET['action'];
}
else $action = 'keine Action vorhanden';
echo $action;
Dieter