Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. powtarza.php
  2. <?php
  3. function powtarza($znak, $dlugosc){
  4. for ($i=0; $i<$dlugosc; $i++){
  5. echo $znak;
  6. }
  7. }
  8. ?>
  9.  
  10. include.php
  11. <?php
  12. include ("powtarza.php");
  13. powtarza("$",10);
  14. ?>
  15.  
  16. guzik kurwo
  17. <form action="include.php" method="get">
  18. <input type="submit" value="Include">
  19. </form><br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement