<br/>
я не понимаю.<?php $group = json_decode(file_get_contents("https://api.vk.com/method/wall.get?v=5.29&domain=".$_GET["id"]."&count=60&filter=owner"), true);
foreach ($group['response']['items'] as $user) {
echo "<div class=\"post\"><img class=\"group-photo\" src=\"".$info['response'][0]['photo_50']."\"/><p>".$user['text']."</p></div>\n";
}?>
<br>
$group = json_decode(file_get_contents("https://api.vk.com/method/wall.get?v=5.29&domain=".$_GET["id"].
"&count=60&filter=owner"), true);
foreach($group['response']['items'] as $user) {
echo "<div class=\"post\"><img class=\"group-photo\" src=\"".$info['response'][0]['photo_50'].
"\"/><p>".nl2br($user['text']).
"</p></div>\n";
}