Web Hosting Talk







View Full Version : MySQL Help


elfz
07-29-2009, 02:30 AM
I'm currently using the following script to pull news off my main forum, however, how do i configure this script so that i can pull news from more then just 1 forum?

http://pastebin.com/m3559fcc

Doh004
07-29-2009, 08:25 AM
I'm currently using the following script to pull news off my main forum, however, how do i configure this script so that i can pull news from more then just 1 forum?

http://pastebin.com/m3559fcc


$forumid = '2,3,4,5';



$topicq = mysql_query("SELECT * FROM topics WHERE forum_id IN(".$forumid.") ORDER BY start_date desc");