![]() |
Does anyone know how to modify the code below so that I can search all the forums except for forumid number 5 for the latest 10 posts ?
Please help. Thanks ! <html> <? require("forum/admin/config.php3"); $num_active = 5; $db=mysql_connect($servername,$dbusername,$dbpassw ord); mysql_select_db($dbname); $twentyfourhours= 24*60*60; $date1 = time() - $twentyfourhours * 1; $myselect = "select * FROM thread ORDER BY lastpost DESC LIMIT 10"; $result = mysql_query($myselect); if ($row = mysql_fetch_array($result)) { do { printf("<li><a href=\"http://www.pdasquare.com/forum/showthread.php3?threadid=%d\">%s</a><br>%d views - %d replies</li>", $row[threadid], $row[title], $row[views], $row[replycount]); } while ($row = mysql_fetch_array($result)); } ?> <html> |
$myselect = "select * FROM thread WHERE forumid<>5 ORDER BY lastpost DESC LIMIT 10";
|
Thanks Ed,
I think it works now ! |
All times are GMT. The time now is 08:18 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|