Cara Membuat Perulangan Bilangan Segitiga Menggunakkan For dan While pada PHP


Assalammualaikum Wr. Wb.

Kali ini saya akan mengeshare Cara Membuat Perulangan Bilangan Segitiga Menggunakkan For dan While pada PHP. sebelumnya komputer/laptop anda harus terinstall XAMPP dan Notepad++ terlebih dahulu. Jika sudah terinstall silahkan buat file .php menggunakan Notepad++ Anda.


  • Sebelum copy paste silahkan buat folder di C:/xampp/htdocs/ dengan nama folder perulangan.
  • Sebelumnya kita buat dulu css nya. biar tampilannya tidak seperti zaman purba.
body{
color:#000;
background:-webkit-linear-gradient(top,red,orange,yellow,green);
background:-moz-linear-gradient(top,red,orange,yellow,green);
background:-o-linear-gradient(top,red,orange,yellow,green);
background-attachment:fixed;
font-size:18px;
font-family: Tahoma, sans-serif;
margin:0;
padding:48px;
}
h2{
color:blue;
}
h2:hover{
color:red;
}
a,a:visited{
color:blue;
text-decoration:none;
}
a:hover{
color:red;
text-shadow:0 2px 6px #888;
}
.panel{
max-width:480px;
background-color:skyblue;
margin:1px auto 1px;
padding:24px;
border-radius:8px;
-webkit-border-radius:8px;
-moz-border-radius:8px;
box-shadow:0 4px 8px #000;
}
input{
border-radius:8px;
-webkit-border-radius:8px;
-moz-border-radius:8px;
font-size:18px;
padding:8px 14px;
margin:0 1px;
border:1px solid #888;
}
.field{
width:320px;
}
.tombol{
color:#fff;
background-color:#000;
}
.tombol:hover{
background-color:orange;
}
  • Simpan di C:/xampp/htdocs/perulangan dengan nama style.css
A. MEMBUAT PERULANGAN BILANGAN SEGITIGA MENGGUNAKKAN FOR
  • Silahkan copy dan paste script dibawah :
<html>
<head>
<title>Perulangan Segitiga Menggunakan For pada PHP</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<?php
date_default_timezone_set('Asia/Jakarta');
$bil = isset($_POST['bil']) ? $_POST['bil'] : NULL;
echo '<div class="panel">';
echo '<h2>Perulangan Menggunakan For</h2>';
echo date("l, d-M-Y H:i:s");
echo '<hr>';
echo '<h4>Masukkan Bilangan :</h4>';
echo '<form action="" method="post">';
echo '<input class="field" type="text" name="bil" value="'.$bil.'" placeholder="Masukkan Bilangan..."/>';
echo '<input class="tombol" type="submit" name="submit" value="OK"/>';
echo '</form>';
if((isset($bil))and($bil!=NULL)){
echo '<h4>Hasil Perulangan :</h4>';
for($i=1;$i<=$bil;$i++){
for($j=1;$j<=$i;$j++){
echo $i;
}
echo '<br/>';
}
}
echo '<hr>';
echo '<a href="../">&laquo; Kembali</a>';
echo '<hr>';
echo '<center><a href="http://syahrulzzadie.blogspot.com" target="blank_">&copy; Syahrulzzadie</a></center>';
echo '</div>';
?>
</body>
</html>
  •  Simpan di C:/xampp/htdocs/perulangan dengan nama for.php
  • Silahkan Buka web browser anda (Google Chrome atau Mozilla). lalu ketikan http://localhost/perulangan/for.php
  • Maka hasilnya seperti ini:


B. MEMBUAT PERULANGAN BILANGAN SEGITIGA MENGGUNAKKAN WHILE
    • Silahkan copy dan paste script dibawah :
    <html>
    <head>
    <title>Perulangan Menggunakan While pada PHP</title>
    <link rel="stylesheet" href="style.css" type="text/css"/>
    </head>
    <body>
    <?php
    date_default_timezone_set('Asia/Jakarta');
    $bil = isset($_POST['bil']) ? $_POST['bil'] : NULL;
    echo '<div class="panel">';
    echo '<h2>Perulangan Menggunakan While</h2>';
    echo date("l, d-M-Y H:i:s");
    echo '<hr>';
    echo '<h4>Masukkan Bilangan :</h4>';
    echo '<form action="" method="post">';
    echo '<input class="field" type="text" name="bil" value="'.$bil.'" placeholder="Masukkan Bilangan..."/>';
    echo '<input class="tombol" type="submit" name="submit" value="OK"/>';
    echo '</form>';
    if((isset($bil))and($bil!=NULL)){
    echo '<h4>Hasil Perulangan :</h4>';
    $i=0;
    while($i<$bil){
    $i++;
    $j=0;
    while($j<$i){
    $j++;
    echo $i;
    }
    echo '<br/>';
    }
    }
    echo '<hr>';
    echo '<a href="../">&laquo; Kembali</a>';
    echo '<hr>';
    echo '<center><a href="http://syahrulzzadie.blogspot.com" target="blank_">&copy; Syahrulzzadie</a></center>';
    echo '</div>';
    ?>
    </body>
    </html>
    • Simpan di C:/xampp/htdocs/perulangan dengan nama while.php
    • Silahkan Buka web browser anda (Google Chrome atau Mozilla). lalu ketikan http://localhost/perulangan/while.php
    • Maka hasilnya seperti ini:


    Atau Anda juga bisa Download ZIP filenya disini.

    Sekian dari saya, Terima kasih telah berkunjung. Semoga Bermanfaat bagi Anda.

    Wassalammualaikum Wr. Wb.
    Previous
    Next Post »
    Thanks for your comment