Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

PHP While Loop

Examples using the while loop with PHP.

Loop Syntax #1

$i = 1;
while($i < 5) {
echo $i.”<br/>”;
$i++;
}

Loop Syntax #2

$myvar = 1;
while($myvar < 5) {
echo $myvar.”<br/>”;
$myvar++;
}