Код: Выделить всё
$postLink = '';
if($post['forum_id']){
$postLink = '/forum/viewtopic.php?f='.$post['forum_id'];
if($post['topic_id'])
$postLink .= '&t='.$post['topic_id'];
if($post['post_id'])
$postLink .= '#p'.$post['post_id'];
}Код: Выделить всё
$userLink = '';
if($post['user_id'] && $post['user_id'] != 1){
$userLink = '/forum/memberlist.php';
$userLink .= '?mode=viewprofile&u='.$post['user_id'];
$userLink = '<a href="'.$userLink.'" class="post_username" target="_blank">'.$post['post_username'].'</a>';
}else{
$userLink = $post['post_username'];
}Заранее благодарю!

