Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Manual de PHP de WebEstilo.com -->
- <!-- Ejemplo de Sentencia Ciclica WHILE -->
- <html>
- <head>
- <title>Ejemplo de PHP. Ciclo WHILE</title>
- </head>
- <body>
- Inicio<BR>
- <?php
- $i=0;
- while ($i<10)
- {
- echo "El valor de i es ", $i,"<br>";
- $i++;
- }
- ?>
- Final<BR>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement