Advertisement
idsystems

PHP_Leccion1.8_01

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