I am running Apache 1.3.26 with PHP 4.2.1 on Linux 7.3 with IBM DB2 V8.1.
I have the following PHP works well with Mozilla on Linux but enter key does do anything with Window IE6.
Any idea?
Here is the myscript.php
<?php
if ($enter == "click") {
// do whatever
}
else if {
echo '<form action="$action" method="post">';
include("my.html");
echo '</form>';
}
?>
Here is my.html
<html>
...
<body>
...
<input type="image" src="xxx.gif" name="enter" value="click">
...
</body>
</html>