Friday, 29 May 2015
PHP if ... else if Statements
Related Posts:
PHP and the Post Attribute of HTML Forms <FORM NAME ="form1" METHOD ="POST" ACTION = ""> The ?Submit1=Login part from the previous section is now gone! That is because we used POST as the method. Using POST means that the form data won't get … 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
HTML Forms and PHP If you know a little HTML, then you know that the FORM tags can be used to interact with your users. Things that can be added to a form are the likes of text boxes, radio buttons, check boxes, drop down lists, text are… Read More
PHP Booleans A Boolean value is one that is in either of two states. They are known as True or False values, in programming. True is usually given a value of 1, and False is given a value of zero. You set them up just like other va… Read More
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… Read More
0 comments:
Post a Comment