Advertisement
Short_Circuit

Untitled

Aug 13th, 2014
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3.     <head>
  4.         <style type="text/css">
  5.         html,
  6.         body {
  7.             font-family: Arial;
  8.             font-size: 200px;
  9.         }
  10.         yes {
  11.             color: #00FF00;
  12.         }
  13.         no {
  14.             color: #FF0000;
  15.         }
  16.         </style>
  17.     </head>
  18.     <body>
  19.         <?php
  20.         $yes = mt_rand(0, 1);
  21.         if ( $yes ) {
  22.             echo "<yes>Yes</yes>";
  23.         } else {
  24.             echo "<no>No</no>";
  25.         }
  26.         ?>
  27.     </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement