Code: Select all
<html>
<body?
<form action="action.php" method="post">
<p>Your name: <input type="text" name="name" /></p>
<p>Your age: <input type="text" name="age" /></p>
<p><input type="submit" /></p>
</form>
</body>
</html>Code: Select all
<html>
<body>
Hi
<?php echo $_POST['name']; ?>.
You are <?php echo $_POST['age']; ?> years old.
</body>
</html>I open the HTML with Firefox, fill in some data, click the Submit Query button and the program action.php is called, showing the result. But when I try to do the same with IE, nothing happens when I click the Submit Query button. Not even an error message.
Any idea about what is going on? Thanks.