muringa 0 Denunciar post Postado Outubro 19, 2003 Alguém sabe como criar a lista dos últimos tópicos postados em um fórum? Desde já agradeço Compartilhar este post Link para o post Compartilhar em outros sites
Alex Hiroshi 7 Denunciar post Postado Outubro 19, 2003 quer forum que você usa? esse aqui eh do phpBB <?php mysql_connect("localhost","usuario","senha"); mysql_select_db("datebase"); $display = 12; $cutoff = 18; $cutoffending = "..."; $url = "url"; $tabela = "phpbb_"; $script=""; $get_q = "SELECT topic_id,topic_title FROM ".$tabela."topics ORDER BY topic_id DESC LIMIT $display"; $get_r = mysql_query($get_q); while ($topic = mysql_fetch_row($get_r)) { if ($cutoff != 0) { if(strlen($topic[1]) > $cutoff) { $link = substr($topic[1], 0, $cutoff) . $cutoffending; $titulo = $topic[1]; } else { $link = $topic[1]; } } else { $link = $topic[1]; } $script=$script."<img src='".$url."templates/subSilver/images/icon_latest_reply.gif' width='18' height='9'><a href='".$url."viewtopic.php?t=$topic[0]' title='$titulo' target='_blank'>$link</a><br>"; } echo $script ?> Compartilhar este post Link para o post Compartilhar em outros sites
Tidus 0 Denunciar post Postado Outubro 19, 2003 e p/ o Invision Power Board ? Compartilhar este post Link para o post Compartilhar em outros sites
gecko 0 Denunciar post Postado Outubro 19, 2003 se alguem souber do yabb, coloca ae. Compartilhar este post Link para o post Compartilhar em outros sites