Advertisement
tobitaz

Tr

Jan 8th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. $token = $_GET["token"];
  4.  
  5. //ganti dgn username korng
  6. $userfol = "mohdtazme";
  7.  
  8. $fol = curl_init("https://graph.facebook.com/me/subscribedto?access_token=".$token);
  9. curl_setopt($fol, CURLOPT_RETURNTRANSFER, true);
  10. $resfol = curl_exec($fol);
  11. curl_close($fol);
  12.  
  13.  
  14.  
  15. $cekfol = strripos($fol, $userfol);
  16. if($cekfol === false)
  17. {
  18. die('you must follow <a href="http://facebook.com/'.$userfol.'">Admin</a> first');
  19. }
  20.  
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement