Advertisement
Guest User

test1

a guest
Mar 14th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. function func($limit) {
  3.   for ($i = 0; $i < $limit; $i++) {
  4.     echo "<p>Hello world" . $i . "</p>";
  5.   }
  6. }
  7. ?>
  8. <html>
  9. <body>
  10. <?php func(10);?>
  11. </body>
  12. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement