program php FOR

program php FOR

/* contoh 1 */
for ($i = 1; $i <= 10; $i++) {
echo "$i ";
}
echo "

";
/* contoh 2 */
for ($i = 1; ; $i++) {
if ($i > 10) {
break;
}
echo "$i ";
}
echo "

";
/* contoh 3 */
$i = 1;
for (; ; ) {
if ($i > 10) {
break;
}
echo "$i ";
$i++;
} echo "

";
/* contoh 4 */
for ($i = 1; $i <= 10; print "$i ", $i++);
?>

hasinya...



0 comments:

Posting Komentar

 
Free Website templatesfreethemes4all.comLast NewsFree CMS TemplatesFree CSS TemplatesFree Soccer VideosFree Wordpress ThemesFree Blog templatesFree Web Templates
Animated Social Gadget - Blogger And Wordpress Tips