hi,
bei Input type image weden doch Name und x/y clickposition uebermittelt. Warum kannst Du das nicht mit php auswerten?
Folgendes html:
<html>
<head>
</head>
<body>
<form action="neu.html" 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>
erzeugt z. B. so eine Query:
.../neu.html?down.x=50&down.y=37
Jetzt kannst Du doch in php checken:
if(isset($HTTP_GET_VARS["down"])) tuwas();
elseif(isset($HTTP_GET_VARS["up"])) tuwasanderes();
hth + Gruss Joachim