aquaballoon

Ajax - Load external site

Apr 18th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. // proxy.php
  2. <?php
  3.     $url = 'http://202.179.30.16/signup.php';
  4.     $htm = file_get_contents($url);
  5.     echo $htm;
  6. ?>
  7.  
  8. // load.php
  9. $("$my-content").load("proxy.php");
Advertisement
Add Comment
Please, Sign In to add comment