Re: PHP Basics - Frustrated
Code:
<form method "POST" action="sayhello.php">
Your Name: <input type="text" name="user">
<input type="submit" value="Say">
</form>
You are missing one minor thing. The "=" sign between "method" and "POST".
Code:
<form method="post" action="sayhello.php">
Your Name: <input type="text" name="user">
<input type="submit" value="Say">
</form>
Re: PHP Basics - Frustrated
Re: PHP Basics - Frustrated
I cannot believe it was such a stupid thing! Thanks for taking the time and correcting me!!
Grateful,
Sonya
Re: PHP Basics - Frustrated
Sometimes we miss the little things.