Advertisement
dysphafiz_

Untitled

Sep 25th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Coding Correction 2 (M. Hafidz Fadillah - XI RPL 2)</title>
  5. </head>
  6. <body>
  7.     <h2>Tanpa Ternary</h2>
  8.     <h3>
  9.         <?php
  10.             $t=date("d");
  11.             if ($t<='10') {
  12.                 echo "awal bulan";
  13.             }
  14.         ?> 
  15.     </h3>
  16.  
  17.     <h4>
  18.         <?php
  19.             $d=date("d");
  20.             if ($d<='10') {
  21.                 echo "awal bulan";
  22.             }
  23.             else {
  24.                 echo "sudah lewat awal bulan";
  25.             }
  26.         ?>
  27.     </h4>
  28.     <h2>Pakai Ternary</h2>
  29.     <h3>1
  30.         <?php
  31.             $t = date ('d');
  32.             echo 'Hari ini adalah ',
  33.             ($t <=10 ? 'Awal Bulan' : null);
  34.         ?>
  35.     </h3>
  36.     <h3>2
  37.     <?php
  38.         $t = date ('d');
  39.         echo 'Hari ini adalah ',
  40.         ($t <=10 ? 'Awal Bulan' : 'Sudah lewat awal bulan');
  41.         ?>
  42.     </h3>
  43.     <h3>3
  44.         <?php
  45.             $t = date ('d');
  46.             echo 'Hari ini adalah ',
  47.             ($t <=10 ? 'Awal Bulan' : ($t <=20 ? 'pertengahan bulan' : 'akhir bulan'));
  48.         ?>
  49.     </h3>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement