Posted by forcescript on March 7, 2009
If you’re a TV buff like me, than read this, it will change your life. Today, anyone can watch TV on their PC or laptop, thanks to a breakthrough in digital TV technology. Satellite channels on PC have become so popular, that every day hundreds of people are switching from regular TV to Satellite TV that they can watch on their PC’s or laptops.
Posted by forcescript on August 21, 2008
Do…while is some Looping statements in PHP
The do…while statement will execute a block of code at least once – it then will repeat the loop as long as a condition is true.
do
{
code to be executed;
}
while (condition);
Example
The following example will increment the value of i at least once, and it will continue incrementing the variable i as long as it has a value of less than 5:
<html>
<body>
<?php
$i=0;
do
{
$i++;
echo “The number is $i <br />”;
}
while ($i<5);
?>
</body>
</html>
And output is
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5