PHP Video Lesson 6 - POST
Code Box
<form action="lesson6.php" method="post"> <!--//Make the HTML Form --> Your Text:<input name="text" type="text"> <!--//Make the input box --> <input type="submit" value="Submit"> <!--//Make the Submit button --> </form> <!--// End the Form --> <?php if (isset($_POST['text'])) { /* "if" something was posted (isset) do the following: */ print "You Said: ". $_POST['text']; } ?>
© 2006-2007 Code2Design.com
You must have at
least
a 1024x768 screen resolution to watch the videos correctly.
Right-click on your desktop and select "Properties" then the "Settings" tab to change your sreen resolution.