Forms and PHP Forms Submit Data pGuessing game








![<? php Persisting $oldguess = isset($_POST['guess']) ? Form Data $_POST['guess'] : ''; Across ? <? php Persisting $oldguess = isset($_POST['guess']) ? Form Data $_POST['guess'] : ''; Across ?](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-9.jpg)


![<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-12.jpg)
![<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-13.jpg)
![<? php $guess = ''; $message = false; . . . if ( isset($_POST['guess']) <? php $guess = ''; $message = false; . . . if ( isset($_POST['guess'])](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-14.jpg)
![<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-15.jpg)







![<p><label for="inp 09">Which are awesome? <br/> <select multiple="multiple" name="code[]"> <option value="python">Python</option> <option value="css">CSS</option> <option <p><label for="inp 09">Which are awesome? <br/> <select multiple="multiple" name="code[]"> <option value="python">Python</option> <option value="css">CSS</option> <option](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-23.jpg)




- Slides: 27

Forms and PHP

Forms Submit Data <p>Guessing game. . . </p> <form> <p><label for="guess">Input Guess</label> <input type="text" name="guess"/></p> <input type="submit"/> </form> form 1. php

$_GET and $_POST PHP loads the values for the URL parameters into an array called $_GET and the POST parameters into an array called $_POST There is another array called $_REQUEST which merges GET and POST data

<p>Guessing game. . . </p> <form> <p><label for="guess">Input Guess</label> <input type="text" name="guess"></p> <input type="submit"/> </form> $_GET: <? php print_r($_GET); ? > form 2. php

<p>Guessing game. . . </p> <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" size="40"/></p> <input type="submit"/> </form> <pre> $_POST: <? php print_r($_POST); ? > $_GET: <? php print_r($_GET); ? > form 3. php

Forms GET. vs. POST Two ways the browser can send parameters to the web server GET - Parameters are placed on the URL which is retrieved POST - The URL is retrieved and parameters are appended to the request in the HTTP connection

Passing Parameters to The Server Web Server HTTP Request Browser GET /form 1. php? guess=42 Accept: text/html User-Agent: Lynx/2. 4 libwww/2. 14 POST /form 3. php Accept: text/html User-Agent: Lynx/2. 4 libwww/2. 14 Content-type: application/x-www-form-urlencoded Content-length: 13 guess=42 <input type="text" name="guess" id="yourid" />

Rules of the POST/GET Road GET is used when your are reading or searching things POST is used when data is being created or modified Web search spiders will follow GET URLs but generally not POST URLs GET has an upper limit of the number of bytes of parameters and values (think about 2 K)
![php Persisting oldguess issetPOSTguess Form Data POSTguess Across <? php Persisting $oldguess = isset($_POST['guess']) ? Form Data $_POST['guess'] : ''; Across ?](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-9.jpg)
<? php Persisting $oldguess = isset($_POST['guess']) ? Form Data $_POST['guess'] : ''; Across ? > Requests <p>Guessing game. . . </p> <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" id="guess" size="40" <? php echo 'value="'. $oldguess. '"'; ? > /></p> <input type="submit"/> form 4. php </form> Review: Ternary Operation

To The Rescue: htmlentities() <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" <? php echo 'value="'. htmlentities($oldguess). '"'; ? > /></p> <input type="submit"/> </form> form 5. php

Processing POST Data There are many patterns for handling POST data No "rules" just "suggestions" What about frameworks? <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // Trick for integer / numeric parameters $guess = $_POST['guess'] + 0; if ( $guess == 42 ) { $message = "Great job!"; } else if ( $guess < 42 ) { $message = "Too low"; } else { $message = "Too high. . . "; } } ? > <html> <head> <title>A Guessing game</title> </head> <body style="font-family: sans-serif; "> <p>Guessing game. . . </p> <? php if ( $message !== false ) { echo("<p>$message</p>n"); } ? > <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" id="guess" size="40" <? php echo 'value="'. htmlentities($guess). '"'; ? > /></p> <input type="submit"/> </form> </body> Completely process incoming POST data (if any) - produce no output. Produce the page output. guess. php
![php guess message false if issetPOSTguess <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-12.jpg)
<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // Trick for integer / numeric parameters $guess = $_POST['guess'] + 0; if ( $guess == 42 ) { $message = "Great job!"; } else if ( $guess < 42 ) { $message = "Too low"; } else { $message = "Too high. . . "; } } ? > <html> <head> <title>A Guessing game</title> </head> <body style="font-family: sans-serif; "> <p>Guessing game. . . </p> <? php if ( $message !== false ) { echo("<p>$message</p>n"); } ? > <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" id="guess" size="40" <? php echo 'value="'. htmlentities($guess). '"'; ? > /></p> <input type="submit"/> </form> </body> guess. php
![php guess message false if issetPOSTguess <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-13.jpg)
<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // Trick for integer / numeric parameters $guess = $_POST['guess'] + 0; if ( $guess == 42 ) { $message = "Great job!"; } else if ( $guess < 42 ) { $message = "Too low"; } else { $message = "Too high. . . "; } } ? > <html> <head> <title>A Guessing game</title> </head> <body style="font-family: sans-serif; "> <p>Guessing game. . . </p> <? php if ( $message !== false ) { echo("<p>$message</p>n"); } ? > <form method="post"> <p><label for="guess">Input Guess</label> <input type="text" name="guess" id="guess" size="40" <? php echo 'value="'. htmlentities($guess). '"'; ? > /></p> <input type="submit"/> </form> </body> <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // Nifty trick $guess = $_POST['guess'] + 0; if ( $guess == 42 ) { $message = "Great job!"; } else if ( $guess < 42 ) { $message = "Too low"; } else { $message = "Too high. . . "; } } ? > <html>. . . guess. php
![php guess message false if issetPOSTguess <? php $guess = ''; $message = false; . . . if ( isset($_POST['guess'])](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-14.jpg)
<? php $guess = ''; $message = false; . . . if ( isset($_POST['guess']) ) { // Trick for integer / numeric parameters? > $guess = $_POST['guess'] + 0; <html> if ( $guess == 42 ) { <head> $message = "Great job!"; } else if ( $guess < 42 ) { <title>A Guessing game</title> $message = "Too low"; } else { </head> $message = "Too high. . . "; <body style="font-family: sans-serif; "> } } <p>Guessing game. . . </p> ? > <? php if ( $message !== false ) { <html> <head> echo("<p>$message</p>n"); <title>A Guessing game</title> } </head> <body style="font-family: sans-serif; "> ? > <p>Guessing game. . . </p> <? php <form method="post"> if ( $message !== false ) { <p><label for="guess">Input Guess</label> echo("<p>$message</p>n"); } <input type="text" name="guess" size="40" ? > <? php echo 'value="'. htmlentities($guess). <form method="post"> <p><label for="guess">Input Guess</label> ? > <input type="text" name="guess" id="guess" size="40" <? php echo 'value="'. htmlentities($guess). /></p> '"'; ? > <input type="submit"/> /></p> </form> <input type="submit"/> </form> </body> '"';
![php guess message false if issetPOSTguess <? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { //](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-15.jpg)
<? php $guess = ''; $message = false; if ( isset($_POST['guess']) ) { // Nifty trick $guess = $_POST['guess'] + 0; if ( $guess == 42 ) { $message = "Great job!"; } else if ( $guess < 42 ) { $message = "Too low"; } else { $message = "Too high. . . "; } } ? > <html>. . . guess. php

Other Input Types Text Password Radio Button Check Box Select / Drop-Down Text. Area http: //www. php-intro. com/code/forms/more. php

<p>Many field types. . . </p> <form method="post" action="more. php"> <p>Account: <input type="text" name="account" size="40" ></p> <p>Password: <input type="password" name="pw" size="40" ></p> <p>Nick Name: <input type="text" name="nick. Name" id=“ size="40" ></p> more. php $_POST: Array ( [account] => Beth [pw] => 12345 [nick. Name] => BK [when] => pm. . . )

more. php <p>Preferred Time: <br/> <input type="radio" name="when" value="am">AM <input type="radio" name="when" value="pm" checked>PM</p> $_POST: Array(. . . [nick] => BK [when] => pm. . . )

<p>Classes taken: <br/> <input type="checkbox" name="class 1" value="si 502" checked> SI 502 - Networked Tech <input type="checkbox" name="class 2" value="si 539"> SI 539 - App Engine <input type="checkbox" name="class 3"> SI 543 - Java </p> $_POST: Array(. . . [when] => pm [class 1] => si 502 [soda] => 0. . . ) more. php

<p>Which soda: <select name="soda"> <option value="0">-- Please Select --</option> <option value="1">Coke</option> <option value="2">Pepsi</option> <option value="3">Mountain Dew</option> <option value="4">Orange Juice</option> <option value="5">Lemonade</option> </select> </p> more. php $_POST: Array(. . . [class] => si 502 [soda] => 0. . . The values can be any string but numbers are used quite often. )

<p>Which snack: <select name="snack" > <option value="">-- Please Select --</option> <option value="chips">Chips</option> <option value="peanuts" selected>Peanuts</option> <option value="cookie">Cookie</option> </select> </p> more. php $_POST: Array(. . . [class] => si 502 [soda] => 0 [snack] => peanuts. . . )

more. php <p>Tell us about yourself: <br/> <textarea rows="10" cols="40" name="about"> I love building web sites in PHP and My. SQL. </textarea> </p> $_POST: Array(. . . [about] => I love building web sites in PHP and My. SQL. [dopost] => Submit. . . )
![plabel forinp 09Which are awesome br select multiplemultiple namecode option valuepythonPythonoption option valuecssCSSoption option <p><label for="inp 09">Which are awesome? <br/> <select multiple="multiple" name="code[]"> <option value="python">Python</option> <option value="css">CSS</option> <option](https://slidetodoc.com/presentation_image/303360a760b505085f3b8aa11b0260df/image-23.jpg)
<p><label for="inp 09">Which are awesome? <br/> <select multiple="multiple" name="code[]"> <option value="python">Python</option> <option value="css">CSS</option> <option value="html">HTML</option> <option value="php">PHP</option> </select> $_POST: Array(. . . [code] => Array ( [0] => css [1] => html ) [dopost] => Submit. . . ) more. php

more. php <p> <input type="submit" name="dopost" value="Submit"/> <input type="button" onclick="location. href='http: //www. php-intro. com/'; return false; " value="Escape"> </p> $_POST: Array(. . . [dopost] => Submit. . . ) On submit input types, the text is both in the UI and in $_POST.

HTML 5 Input Types HTML 5 defines new input types Not all browsers support all input types The fall back to type="text" http: //www. w 3 schools. com/html 5_form_input_types. asp

Select your favorite color: <input type="color" name="favcolor" value="#0000 ff"><br/> Birthday: <input type="date" name="bday" value="2013 -09 -02"><br/> E-mail: <input type="email" name="email"><br/> Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5"><br/> Add your homepage: <input type="url" name="homepage"> Transportation: <input type="flying" name="saucer"> Validation happens when you press submit. http: //www. php-intro. com/code/forms/html 5. php

Summary Forms, $_GET and $_POST Sanitizing HTML Model-View Controller Form fields New form fields in HTML 5
index php input php regist php logincheck php
PHP Intro PHP Webintegrator PHP Baggrund PHP er
PHP AVAudio Visual PHP PHP 20110910 yoya PHP
php PHP 4 Internals php Andi Gutmans PHP
PHP Apa itu PHP PHP singkatan dari PHP
PHP Forms and Databases Forms with PHP Form
Forms Forms and Forms n What forms of
LONG FORMS CONTRACTED FORMS SHORT FORMS Long forms
Weak forms strong forms Weak forms strong forms
Story Game Directions Game Title Game Preparation Game
Story Game Directions Game Preparation Game Board Game
Story Game Directions Game Title Game Preparation Game
PHP Basics Introduction to PHP a PHP file
index php top php 9162020 regist php input
DBW PHP DBW 2017 PHP PHP hypertext processor
Creating PHP Pages Chapter 8 PHP Functions PHP
PHP Teppo Risnen LIIKEOAMK 2011 PHP n PHP
Skriptni jezik PHP Uvod v PHP PHP je
PERTEMUAN 1 ELEMEN DASAR PHP DASAR PHP PHP
PHP What is PHP PHP is an acronym
Security Issues with PHP PHP installation PHP programming
PHP Useful Tips Topics PHP arrays PHP file
PHP www bilisimogretmeni com Php Nedir PHP sunucutarafl
Skriptni jezik PHP Uvod v PHP PHP je
7 5 PHP Development Definition PHP PHP Hypertext
PHP PHP STAND FOR HYPERTEXT PREPROCESSOR PHP HISTORY
PHP PHP itu Merupakan singkatan recursive dari PHP