Advertisement
idsystems

PHP_Leccion1.8_02

Jan 19th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <!-- Manual de PHP de WebEstilo.com -->
  2. <!-- Ejemplo de Sentencia Ciclicla FOR -->
  3. <html>
  4. <head>
  5.    <title>Ejemplo de PHP. Ciclo FOR</title>
  6. </head>
  7. <body>
  8. Inicio<BR>
  9. <?php
  10.    for($i=0 ; $i<10 ; $i++)
  11.    {
  12.       echo "El valor de i es ", $i,"<br>";
  13.    }
  14. ?>
  15. Final<BR>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement