Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url = file_get_contents("https://api.vk.com/method/wall.get?domain=rhombus_shop&");
- $data = json_decode($url,true);
- if(@$data['error']['error_code']){
- echo"Ошибка" . "<b>" . $data['error']['error_code'] . "</b>";
- }else{
- for($i=0;$i<5;$i++){
- echo($data['response'][$i]['text'] . "<br>");
- echo"<a href='https://vk.com/rhombus_shop?w=wall".$data['from_id']."_".$data['response'][$i]['id']."'>Смотреть в ВК</a>" . "<br>";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment