Options
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. }