Advertisement
dysphafiz_

Untitled

Sep 18th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.   <head>
  5.     <title>Nilai Nilai Boolean  (M. Hafidz Fadillah - XI RPL 2)</title>
  6.   </head>
  7.   <body>
  8.     <center>
  9.     <h1>Contoh Nilai Boolean</h1>
  10.   <pre>
  11.     $a = TRUE;
  12.     $b = false;
  13.   </pre>
  14.   Hasil eksekusi dengan php: <br>
  15.  
  16.   <?php
  17.  $a = TRUE;
  18.  $b = false;
  19.  echo "$a = $a"."<br>";
  20.   echo "$b = $b";
  21.    ?>
  22.   </body>
  23. </center>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement