PHP,MYSQL,AJAX,OOP,CUSTOM CODING,JAVASCRIPT
while (condition) { code to be executed; }
<?php
// print 1 to 5
$a=1;
while ($a<=5)
{
echo "\t ".$a;
$a=$a+1;
}
?>
No comments:
Post a Comment