1. PHP / Говнокод #18943

    −11

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    <?php 
    include('config.php');
    session_start();
    
    if($_GET["code"] != null)
    {
    	$user_code = $_GET["code"];
    	$api ='https://oauth.vk.com/access_token?client_id=666&client_secret=i_am_a_god&redirect_uri=http://govnosite.com/check_podp.php&code='.$user_code;
    	$resp = file_get_contents($api);
    	$data = json_decode($resp, true);
    	$vk_access_token = $data['access_token'];
    	$vk_uid =  $data["user_id"];
    	
    	$sql = mysql_query("SELECT `id`, `email`, `podp_id` FROM `regitr` WHERE `email`='".$_SESSION['email']."' "); 
    	$i=1;
    	while($row = mysql_fetch_assoc($sql)) 
    	{
    		$podp[$i] = $row["podp_id"];
    		$resy = file_get_contents("https://api.vk.com/method/friends.areFriends?user_ids=".$podp[$i]."&v=5.37&access_token=".$vk_access_token."");
    		$datar = json_decode($resy, true);
    		$user_info = $datar['response'][0];
    		$result = $user_info['friend_status'];
    		if($result == 0 || $result == 2)
    		{
    			header("Location: ne_popd1.php"); 
    			exit();
    		}
    		else
    		{
    			$i++;
    		}
    	}
    	header("Location: oplata.php");
    	exit();
    }
    ?>

    Проверяем подписчиков

    Запостил: kissarat, 31 Октября 2015

    Комментарии (1) RSS

    • опять школьники вместо макдональдса пошли работать пхп программистами
      Ответить

    Добавить комментарий