vitovt
Advanced Member | Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору НАРОД! Подскажите плиз как сделать, чтобы в том месте, где показывается твой ник , аватара, откуда ты, сколько мессаг и т.д. Сделать так, чтобы там показывался ид пользователя. ну какой он по счету... Добавлено И еще, у меня есть такой вот код Код: <?php $topicnumber = 8; $urlPath = "http://$HTTP_HOST/"; include ("$DOCUMENT_ROOT/forum/config.php"); $table_topics = $table_prefix. "topics"; $table_forums = $table_prefix. "forums"; $table_posts = $table_prefix. "posts"; $table_users = $table_prefix. "users"; $link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect"); mysql_select_db("$dbname") or die("Could not select database"); $query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username FROM $table_topics t, $table_forums f, $table_posts p, $table_users u WHERE t.topic_id = p.topic_id AND f.forum_id = t.forum_id AND t.topic_status <> 2 AND p.post_id = t.topic_last_post_id AND p.poster_id = u.user_id ORDER BY p.post_id DESC LIMIT $topicnumber"; $result = mysql_query($query) or die("Query failed"); $export = ' <br> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="1"><img border="0" src="/im/i/1_0_4.gif" width="5" height="24"></td> <td width="100%" class="kra">НА ФОРУМЕ</td> </tr> </table> <table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" bgcolor="#CCCCCC"> <tr> <td width="100%"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" bgcolor="#FFFFFF"> <tr> <td width="100%"> <div align="center"> <center> <table border="0" cellspacing="4" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0"> <tr> <td height="12" valign="top"><B>•</B> <a href="http://'.$HTTP_HOST.'/forum/index.php">Список форумов</a><br> <B>•</B><a href="http://'.$HTTP_HOST.'/forum/search.php?show_results=topics&search_author=*&sort_by=0&sort_dir=DESC&search_time=1">Новое за 24 часа</a> <B><br> •</B><a href="http://'.$HTTP_HOST.'/forum/search.php?search_id=newposts">Новое с последнего визита</a> <B><br> •</B><a href="http://'.$HTTP_HOST.'/forum/viewonline.php">Кто сейчас на форуме</a> <B><br> •</B><a href="http://'.$HTTP_HOST.'/forum/profile.php?mode=register">Регистрация</a> <B><br> •</B><a href="http://'.$HTTP_HOST.'/forum/search.php">Поиск</a><br> '; while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $export .= ' <B>•</B> <a class="menu" href="'.$urlPath.'/forum//viewtopic.php?topic='.$row[topic_id].'"> '.$row["topic_title"].'</a><br> '; } $export .= " </td> </tr></table> </center> </div> </td> </tr> </table> </td> </tr> </table> "; print $export; mysql_free_result($result); mysql_close($link); ?> | Он типа выводит последние 10-ть сообщений на всем форуме, а как сделать так, чтобы выводить еще и ссылку на последнее сообщение в теме?
|