Advertisement
Guest User

Untitled

a guest
Jun 1st, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1.     $curl = curl_init();
  2.     curl_setopt($curl, CURLOPT_URL, 'http://site.ru/test.php');
  3.     curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
  4.     curl_setopt($curl, CURLOPT_REFERER, "www.fake-site.com");
  5.     $out = curl_exec($curl);
  6.     echo $out;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement