viagra vasodilatorviagra 2011 salesviagra expirationviagra resultsviagra nitroglycerinviagra red faceviagra vs cialis priceviagra japanviagra online canadaviagra in womenviagra vs enzyteviagra cialisviagra recreational useviagra grapefruitviagra directionsviagra usaviagra jingleviagra no prescriptionviagra erectionviagra from indiaviagra wikiviagra no prescription usaviagra and alcoholviagra virusviagra buyviagra over the counterviagra juicingviagra by mailviagra triangle restaurantsviagra pillsviagra indiaviagra premature ejaculationviagra dangersviagra joke labelsviagra vs revatioviagra storiesviagra virus emailviagra q&aviagra in canadaviagra kaiser permanenteviagra eye problemsviagra factsviagra urban dicviagra zoloft interactionviagra manufacturerviagra erowidviagra blue visionviagra walgreensviagra super activeviagra durationviagra adviagra quick deliveryviagra las vegasviagra paypalviagra kidsviagra quick tabsviagra light switchviagra los angelesviagra doesn't workviagra from canadaviagra canadaviagra zonder receptviagra effectsviagra prescriptionviagra kick in timeviagraviagra 30sviagra y alcoholviagra use directionsviagra super forceviagra menviagra substituteviagra timeviagra kick inviagra free trialviagra for pulmonary hypertensionviagra kaufenviagra long term effectsviagra usage tipsviagra vs. birth controlviagra going genericviagra knock offsviagra original useviagra recommended dosageviagra womenviagra not workingviagra experiencesviagra benefitsviagra 25mgviagra voucherviagra expiration dateviagra ukviagra headacheviagra horror storiesviagra professionalviagra makes a romantic relationshipviagra 100mg reviewviagra patentviagra mechanism of actionviagra 25mg side effectsviagra under tongueviagra jellyviagra young peopleviagra youtube channelviagra fallsviagra vs staxynviagra in the waterviagra 100mg priceviagra informationviagra historyviagra when to takeviagra vs cialisviagra and ecstacyviagra interactionsviagra without a rxviagra genericviagra for womenviagra newsviagra dosesviagra use in womenviagra nitric oxideviagra nasal congestionviagra overdoseviagra priceviagra best priceviagra mexicoviagra blogviagra overnightviagra jokesviagra coupon

php and web forms

web forms are one of the most common elements of a webpage and the most general method to input data from the user. PHP allows you to easily handle the data input by the user. All the elements of the form are automatically available to the PHP scripts. Consider the HTML page

<form action="dataHandler.php" method="post">
 <p>first name: <input type="text" name="fname" /></p>
 <p>last name: <input type="text" name="lname" /></p>
 <p><input type="submit" /></p>
</form>

the above code plainly defines a simple html form with two text input elements. When the user fills the data in the text field and click on the submit button, the dataHandler.php is called which is of the following type

Hello <?php echo htmlspecialchars($_POST[’fname’]);?>
Your last name is <?php echo htmlspecialchars($_POST[’lname’]);?>

in the HTML form, the method specified was POST, therefore the  data was stored in the variable $_POST. Another option is to use the method GET. When GET method is used with a form, the data from the form is stored in the variable $_GET.

Another variable available is $_REQUEST which contains the merged information from the GET, POST and COOKIE data.