coSBeoS: Wertübergabe aus einem Formular mit Image als Submit-Button

Beitrag lesen

Hallo hier ist nochmal ein Test-Formular:
dieses funktioniert trotzdem nicht ;-(
entweder bin ich zu blöd oder es geht wirklich net. Wäre schön wenn du es dir nochmal
anschauen könntest.
Vielen Dank
Gruß Sven

<html>
<head>

</head>

<body>
<form action="test.php" method="get">
<input type="image" name="up" src="lala.gif" width="100" height="100">
<input type="image" name="down" src="lala.gif" width="100" height="100">
</form>

</body>
</html>

<?
if(isset($HTTP_GET_VARS["up"]))
{
echo "UP";
}
if(isset($HTTP_GET_VARS["down"]))
{
echo "DOWN";
}
?>