Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial

RegisterLogin
Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial
Post Description: Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial
Tags: Do, While, Loop, Learn, Programming, Do, While, Loop, Example, Code, Scripts, Tutorial
This Post Was Posted On Feb 29, 2008 By unix #1226
this short tutorial is to show you how you can display information or data with the DO WHILE loop. I will be using php for this. for this sample code to work, you will need php on your website. if you don't have php already, you can visit our friends at webune.com and signup for a php web hosting plan. They have excellent service and i always recommend them to all my customers.

Now there a is good example of a do while loop:


     Code:
<?php
# This sample code by Wallpaperama.com
# This is a loop that displays a list of numbers 1 through 10
$number_of_loops = 10;
$counter = 1;
do
{
echo $counter.'<br>';
# Increment $counter by 1
$counter ++;
}
# NOTES: The next line checks to see if the number of loops is greater than or equal to ten,
# if its not, then it continues with the loop until the number of loops is more than 10
while ($counter <= $number_of_loops);
?>


if you want to see how this code looks, open your text editor like notepad in Windows and save the file as loop.php, then upload to your PHP website and open it with your browser, when you open the loop.php file with your browser, it will display like this:


     Code:
1
2
3
4
5
6
7
8
9
10


Remeber, if you need PHP web hosting, visit our friends at www.webune.com
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
kate
#1666 1
thank you vary much to your good example in do while loop!!!!! i have now assignment in do while loop!!!!!!! thank you again............ bye...........
Mar 05, 2008 Reply Report abuse
©2012 Webune Forums - Fri Dec 21, 2012 7:59 am
Powered by: Webune Forums V3