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