Advertisement
Guest User

Untitled

a guest
Sep 17th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. if (isset($_POST['url']) && !empty($_POST['url'])) {
  3.     $page = file_get_contents($_POST['url']);
  4.     $page = str_replace("</head>", "<link rel='stylesheet' ... /></head>", $page);
  5.     echo $page;
  6.     exit(1);
  7. }
  8. ?>
  9. <html>
  10.     <head>
  11.         <title>Test</title>
  12.     </head>
  13.  
  14.     <body>
  15.         <form action="" ... >
  16.             <input type="text" name="url" ... />
  17.             <input type="submit" ... />
  18.         </form>
  19.     </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement