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



Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial
 (387) PHP Mysql Hosting
Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial
Post Description:
Post Tags: do, while, loop, learn, programming, do, while, loop, example, code, scripts, tutorial
This Post Has Been Viewed 1586 Times Since Sat Mar 31, 2007 3:14 pm Posted By unix with 2 replies
Next Post »» Simple Array Example Learn PHP Programming Creating Arrays Learn Tutorial
Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial
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:

<?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:

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     [ dejar commentarios ]
  * Name     [nombre]

  * eMail (will not be published)     [coreo electronico]

* Enter Your Reply or Comments:    [commentarios]


Add Picture To Comments         [incluir foto]
YES NO             upload
Receive Replies on my Comments (An email will be sent to you when someone replies to your comments)

     

Comments and replies About Do While Loop Learn Programming Do While Loop Example Code Scripts Tutorial




:: 1 :: #44278 - Reply By kate On Wed Mar 05, 2008 6:02 am
thank you vary much to your good example in do while loop!!!!! i have now assignment in do while loop!!!!!!! thank you again............ bye...........
:: 2 :: #51257 - Reply By sumaramesh On Tue Apr 22, 2008 9:49 pm
yeah this site is good......
ready scripts 2 understand
loops