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>
Code:<form method="post" action="sayhello.php"> Your Name: <input type="text" name="user"> <input type="submit" value="Say"> </form>




Reply With Quote