Form POST not working
Posted: Mon Aug 11, 2014 11:21 am
Hello,
I have a simple form and I am trying to POST results to the process page but nothing is coming up. I have PHP 5.2.
this is just an example.
thank you
I have a simple form and I am trying to POST results to the process page but nothing is coming up. I have PHP 5.2.
Code: Select all
<form action=process.php method=post>
<input type=text name=blah>
<input type=submit>
</form>
Code: Select all
first name: <?php print $_GET["blah"]; ?> <br>thank you