Advertisement
idsystems

PHP_Practica 9

Jan 18th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.   <title></title>
  5. </head>
  6.  
  7. <body>
  8.    <h1>Practica 9</h1>
  9. <?php
  10.   $num=rand(1,5);
  11.   if($num==1){
  12.   echo "<font color='red'>uno</font>";
  13.   }
  14.   if($num==2)
  15.   {
  16.   echo "<font color='blue'>dos</font>";
  17.   }
  18.   if($num==3)
  19.   {
  20.   echo "<font color='#00FFFF'>tres</font>";
  21.   }
  22.   if($num==4)
  23.   {
  24.   echo "<font color='green'>cuatro</font>";
  25.   }
  26.   if ($num==5)
  27.   {
  28.   echo "<font color='orange'>cinco</font>";
  29.   }
  30. ?>
  31.  
  32. </body>
  33.  
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement