I recently changed my web host and now experiencing some problems that may have to do with server configuration. I am trying to simply display data that is submitted through a form, but the page would not display it. Below is a test form I used:
<form action="test.php" method="post">
Blah: <input type="Text" name="blah">
<p>
<input type="Submit" value="Go">
</form>
...and the test.php code is:
<?php
echo "You entered: $blah";
?>
But the test.php only displays:
You entered:
even when the form is submitted with a value in the input field.
Can anyone tell what might be preventing this extremely simple task? Thanks.
(php version: 4)