Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. <?php
  5.  
  6. $max = (int)$_GET["count"];
  7.  
  8. for( $i = 0; $i < $max; $i++ )
  9. {
  10. echo htmlspecialchars( $_GET["text"] ) . "\n";
  11. }
  12.  
  13. ?>
  14. </title>
  15. </head>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement