Hello,
This code is so that the latest post in the forums are displayed in the front page of my website template. The problem is that it does not work with vbseo but only with vbulletin. Is there anyway someone can make this code work with vbseo?
I think the problem has to do with the hightlighted part of the url but i am not sure. :(
Code:<?php mysql_select_db("data_base"); $topics = mysql_query("SELECT `threadid`, `title` FROM `thread` ORDER BY `lastpost` DESC LIMIT 0, 6") or die(mysql_error()); while ($topic = mysql_fetch_assoc($topics)) echo "<li class=\"even\"><a href=\"/forum/showthread.php?goto=newpost&t=", $topic["threadid"], "\"><span>", ((strlen($topic["title"]) > 23) ? substr($topic["title"], 0, 20) . "..." : $topic["title"]), "</span></a></li>"; ?>



LinkBack URL
About LinkBacks






Reply With Quote
