Monday, 4 July 2011

perulangan dengan while dalam php

<html>
<head>
<title> Pengulangan dengan while </title>
</head>
<body>
<center>
<?
$a = 1;
while ($a <=10)
{
print ("perulangan ke $a<br>");
$a = $a + 1;
}
?>
</center>
</body>
</html>

No comments:

Post a Comment