Get latest news and Web Designing tutoria

Friday, 29 May 2015

PHP and the Method Attribute of HTML Forms

<FORM NAME ="form1" METHOD =" " ACTION = "">
The Method attribute is used to tell the browser how the form information should be sent. The two most popular methods you can use are GET and POST. But our METHOD is blank. So change it to this:
<FORM NAME ="form1" METHOD ="GET" ACTION = "">
To see what effect using GET has, save your work again and then click the Submit button on your form. You should see this:

The thing to notice here is the address bar. After basicForm.php, we have the following:
?Submit1=Login
This is a consequence of using the GET method. The data from the form ends up in the address bar. You'll see a question mark, followed by form data. In the image above, Submit1 was the NAME of the button, and Login was the VALUE of the button (the text on the button). This is what is being returned by the GET method. You use the GET method when the data you want returned is not crucial information that needs protecting.
You can also use POST as the Method, instead of GET. Click below to see the difference.

Related Posts:

  • PHP Not Equal To PHP Not Equal To In the previous you saw what Comparison Operators were. In this lessons, we'll explore the Comparison Operator for Not Equal To: !=.So open up your text editor, and add the following script: … Read More
  • PHP Switch Statements To see how switch statements work, study the following code: <?php $picture ='church'; switch ($picture) { case 'kitten': print('Kitten Picture'); break; case 'church': print('Church Picture'); break; } … Read More
  • PHP Less Than, Greater Than The Less Than ( < ) and Greater Than ( > ) symbols come in quite handy. They are really useful in loops (which we'll deal with in another section), and for testing numbers in general. Suppose you wanted to test … Read More
  • PHP Comparison Operators  PHP Comparison Operators You saw in the last section how to test what is inside of a variable. You used if, else … if, and else. You used the double equals sign (==) to test whether the variable was the same thin… Read More
  • PHP Logical Operators As well as the PHP comparison operators you saw earlier, there's also something called Logical Operators. You typically use these when you want to test more than one condition at a time. For example, you could check to… Read More

0 comments:

Post a Comment