Hello!
For example i use this little code:
<?php
if (isset($_POST['Submit'])){
if ((@$_POST['Submit'] == 'x'))
{
echo "OK";exit;
}else{
echo "NOT";
}
}
?>
<html>
<body>
<form action="test.php" method="post" enctype="multipart/form-data">
<input name="Submit" type="image" src="images/table/button.png" value="x" >
</form>
</body>
</html>
In Mozilla (3.5.5) works well, after submit OK was printed. I test it on IE8 and Opera 10, and not work. Nothing printed. The form not proccessed after hit, just reload the page.
Could you help me, how can i use image for submitting form, to work all browser? Thank you.