Вот уловка, которая могла бы помочь:
Я создал страницу HTML формы:
КОДЕКС
<КОДЕКС><html><body><form method="post" action="show_post.php">
<input type="image" name="stamp[1134118800]" src="redstar.gif" value="red">
<input type="image" name="stamp[1134140400]" src="greenstar.gif" value="green">
</form></body></html>
В сценарии, которому форма подчиняется, show_post.php, говорится:
КОДЕКС
<КОДЕКС><?php
print '<html><body>';
print_r ($_POST);
print '
</body></html>';
?>
When I click on the first image, I get:
<КОДЕКС>Array
(
[stamp] => Array
(
[1134118800] => 21
)
)
When I click on the second image, I get:
<КОДЕКС>Array
(
[stamp] => Array
(
[1134140400] => 15
)
)
This works with Opera, IE, and Mozilla.