Advertisement
dysphafiz_

Untitled

Sep 25th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Menentukan Hari</title>
  5.     <style type="text/css">
  6.         body {
  7.             font-size: 18px;
  8.             font-family: verdana;
  9.             background-image: url(gambar/22.jpg);
  10.             background-size: 100%;
  11.             text-align: center;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16.     <?php
  17.         $hari = "minggu";
  18.         $tanggal = 2;
  19.  
  20.         if ($hari == "minggu") {
  21.             if ($tanggal <= 10) {
  22.                 echo "Selamat berakhir pekan pada tanggal muda :d";
  23.             }
  24.             else {
  25.                 echo "Selamat berakhir pekan pada tanggal tua dan tetap semangat :d";
  26.             }
  27.         }
  28.         else {
  29.             echo "semoga hari anda menyenangkan";
  30.             echo "sampai jumpa di akhir pekan";
  31.         }
  32.     ?>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement