1. Kita buka Notepad++
2. Selanjutnya kita klik "bahasa" lalu kita pilih PHP
3. Selanjutnya Salin kode berikut:
<html>
<head>
<title>FOR DAN WHILE YANG MEMBENTUK SEGITIGA SIKU-SIKU</title>
<style>
body{
color:#000;
background:url(rr.jpg) no-repeat;
background-size:100% 100%;
background-attachment:fixed;
font-size:18px;
font-family: Lucida Sans Typewriter;
margin:0;
padding:18px;
}
h1 {
text-align:center;
}
</style>
</head>
<body>
<h1>FOR DAN WHILE YANG MEMBENTUK SEGITIGA SIKU-SIKU</h1>
<?php
for ($i=1; $i <=5 ; $i++) {
$j=1;
while ($j <= $i) {
$j++;
echo $i;
}
echo "<br/>";
}
?>
</body>
Sekian Informasi yang saya berikan
Terimakasih