Get latest news and Web Designing tutoria

Saturday, 30 May 2015

PHP Do ... While loops

This type is loop is almost identical to the while loop except that the condition comes at the end:
do
statement
while (condition)
The difference is that your statement gets executed at least once. In a normal while loop, the condition could be met before your statement gets executed.

Don’t worry too much about do … while loops. Concentrate on For Loop and While Loop But there is another type of loop that comes in handy - the For Each Loop First, a quick word about the break statement.

Related Posts:

  • 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
  • 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 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
  • 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

0 comments:

Post a Comment