I can't get this simple code to work (IT.php):
form action="action.php" method="POST">
Your name: <input type="text" name="name" />
Your age: <input type="text" name="age" />
<input type="submit">
</form>
(action.php):
Hi <?php echo $POST["name"]; ?>.
You are <?php echo $POST["age"]; ?> years old.
The output is: Hi . You are years old.
I turned register_globals to both on and off but there was no effect.
The strange thing about this is a few days ago it was working fine, but now it doesnt work.
Could it be a problem with my browser? I installed some anti pop-up software could that have changed some settings somewhere?
Any help would be appreciated.