Advertisement
AndreyKlipikov

Vk Info

Nov 21st, 2013
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.52 KB | None | 0 0
  1. header("Content-Type: text/html; charset=UTF-8");
  2.  
  3. $uid = intval($_GET['id']);
  4. $name = json_decode(file_get_contents("http://api.vk.com/method/users.get?uid=$uid&fields=first_name_gen,last_name_gen,photo_100,sex,bdate,online,followers_count,screen_name,has_mobile,status"));
  5.  
  6. $info = $name->response;
  7. $info = $info[0];
  8.  
  9. echo "<html>
  10. <head>
  11. <title>Профиль {$info->first_name_gen} {$info->last_name_gen}</title>
  12. </head>
  13. <body>
  14. <div style=\"padding-top:100px\" align=\"center\">
  15. <div align=\"left\" style=\"text-align:left;width:400px;min-height:100px;padding:15px;border:3px solid #42aaff;border-radius:10px;\">
  16. <div style=\"float:right\">
  17. <img src=\"{$info->photo_100}\" width=\"100px\" alt=\"\" border=\"0\">
  18. </div>
  19. <strong>{$info->first_name} {$info->last_name} (" . ($info->online ? "В" : "Не в") . " сети)</strong>
  20. <hr align=\"left\" style=\"width:280px\">
  21. <p>
  22. <b>Статус:</b> " . ($info->status ? $info->status : "Отсутствует") . "
  23. </p>
  24. <p>
  25. <b>Дата рождения:</b> {$info->bdate}
  26. </p>
  27. <p>
  28. <b>Пол:</b> " . ($info->sex == 2 ? "Мужской" : ($info->sex == 1 ? "Женский" : "Не определён")) . "
  29. </p>
  30. <p>
  31. <b>Подписчиков:</b> {$info->followers_count}
  32. </p>
  33. <p>
  34. <b>Указан номер телефона:</b> " . ($info->has_mobile ? "Да" : "Нет") . "
  35. </p>
  36. <p>
  37. <b>Адрес страницы:</b> <a href=\"http://vk.com/{$info->screen_name}\" target=\"_blank\">http://vk.com/{$info->screen_name}</a>
  38. </p>
  39. </div>
  40. </div>
  41. </body>
  42. </html>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement