Php-mysql Course

Loops are used when you want to execute a block of code a specified number of times, or while a specified condition is True.

While loop

A while loop runs code repeatedly as long as a condition remains TRUE.
The while statement includes the condition in parentheses, and it is followed by a block of statements within braces.
  - Syntax:
while (condition) {
  // code to be executed
}
If the condition starts out as false, the statements won’t execute at all.
  - Example:
<?php
$i = 0;
while ($i<5) {
  echo '<br /> i = '. $i;
  $i++;
}
?>
- First it's declared a variable "$i" with the value of 0. The "while" statement checks the condition ($i<5), which it's True and permits the execution of block code inside the brackets. The "$i++" increments the value of "$i" by 1 each time the loop runs, and check again the condition. The loop will stop when the "$i" reach 5.
- This script displays the following results:
i = 0
i = 1
i = 2
i = 3
i = 4

do ... while loop

The do...while loop is a variant of the "while" loop. The major difference between these two loops is that the "do while" construct will execute the code at least once, then checks the condition.
  - Syntax:
do {
  // code to be executed
}
while (condition)
First will be executed the block of code, then checks the condition, and it will repeat the loop as long as the specified condition is TRUE.
This loop will always be executed at least once.
  - Example:
<?php
$x = 8;
do {
  echo '<br /> x = '. $x;
  $x++;
}
while ($x<5)
?>
- This example display "x = 8".
As you can notice, although the condition is False ($x<5), the code within braces is still executed once.

End the While loops with the break instruction

If you want to end a "while" (or "do while") loop before the condition is False, you can use the break instruction after a conditional "if" inside the loop (break ends execution of the current loop or switch structure).
  - Syntax:
while (condition) {
  if(end_condition) break;
  // code to be executed
}
If the end_condition is True, the code after the "break" will not be executed at all, and the execution of "while" loop ends.
  - Example:
<?php
$i = 0;
while ($i<5) {
  if ($i==2) break;
  echo '<br /> i = '. $i;
  $i++;
}
?>
- Output:
i = 0
i = 1
- As you can see, eaven the condition ($i<5) is True, the loop ends when $i==2.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
While Loops

Last accessed pages

  1. String Object (667)
  2. Register and show online users and visitors (39428)
  3. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (26057)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137889)
  5. Adding text with ActionScript 3 (5501)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (202)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide