Advertisement
Rofihimam

Untitled

Sep 18th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Nilai Nilai Boolean Rofi'ul Himam XI RPL 2</title>
  5. </head>
  6. <body>
  7.     <h1>Contoh Nilai Boolean</h1>
  8.     <pre>
  9.         $a = true;
  10.         $b = false;
  11.     </pre>
  12.     Hasil eksekusi dengan PHP : <br>
  13.     <?php
  14.         $a = TRUE;
  15.         $b = false;
  16.         echo "$a = $a"."<br>";
  17.         echo "$b = $b";
  18.     ?>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement