Advertisement
ryvanyo

Salir de HTML - 02.php

Mar 4th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!doctype html>
  2. <html lang="es">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>Salir de HTML</title>
  6.     </head>
  7.     <body>
  8.         <h1>Movimiento Naranja</h1>
  9.         <?php
  10.         /**
  11.          * La funcion rand de php devuelve un numero aleatorio entre dos valores, minimo y maximo
  12.          */
  13.         $numero = rand(0,1);
  14.         ?>
  15.         <?php if ($numero % 2 == 0) { ?>
  16.         <p>El futuro est&aacute; en tus manos</p>
  17.         <?php } else { ?>
  18.         <p>Movimiento ciudadano</p>
  19.         <?php } ?>
  20.        
  21.         <hr>
  22.        
  23.         <?php
  24.         $numero2 = rand(0,1);
  25.         ?>
  26.         <?php if ($numero2) : ?>
  27.         <p>Somos niños libres</p>
  28.         <?php else: ?>
  29.         <p>Somos libres como el viento</p>
  30.         <?php endif ?>
  31.     </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement