Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function func($limit) {
- for ($i = 0; $i < $limit; $i++) {
- echo "<p>Hello world" . $i . "</p>";
- }
- }
- ?>
- <html>
- <body>
- <?php func(10);?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement