Advertisement
Guest User

HELP!

a guest
Jun 15th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?
  2. echo "OK!";
  3. $r = curl_init();
  4. curl_setopt($r, CURLOPT_URL, "https://facebook.com/search/top/?q=some%40email.com");
  5. $res = curl_exec($r);
  6. curl_close($r);
  7.  
  8. echo "Hello";
  9. echo $res;
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement