Advertisement
idsystems

PHP_Practica 6

Jan 18th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.   <title>Practica 6</title>
  5. </head>
  6.  
  7. <body>
  8.   <h1>Practica 6</h1>
  9. <?php
  10.   $num=rand(1,100);
  11.   if($num<=50)
  12.   {
  13. echo "Tu numero es menor o igual que 50: ",$num;
  14. }
  15. else
  16. {
  17. echo "Tu numero es mayor que 50: ",$num;
  18. }
  19.  
  20. ?>
  21.  
  22. </body>
  23.  
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement