Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Last Topic Script?
Hi folks,
I don't have much experians with PHP, so can u help me for a script which show last 10 Topics.
0
This discussion has been closed.
Comments
$query = mysql_query("SELECT theCols FROM theTable LIMIT 10 DESC"); while($row = mysql_fetch_assoc($query)) { // echo the discussion title inside an anchor. // echo who posted it. }