Searching...
22 Nisan 2013 Pazartesi

PHP Third Tutorial - While

22:56
Second Tutorial...


Beginning...

Third PHP article.
Article's objectives:
  • Learn While

While

If you want make many function , you can use while. Its like many IF.
<?php
$count = 1;
while($count < 10)
{
echo $count."<br />";
$count++;
}
?> 

1 yorum: