Chris,
In case you ever need the ability to search a forum title, here's what I did:
On my site to search for stock symbols in the forum titles, I made a copy of "forumdisplay.php" and named it "stockdisplay.php" and added this just below "require('./global.php');"
$iforums=$DB_site->query("SELECT forumid FROM forum WHERE title like '".$Symbol."'");
$iforum=$DB_site->fetch_array($iforums);
$forumid = $iforum["forumid"];
unset($iforum);
$DB_site->free_result($iforums);
Symbol is what is passed from the search form.
Hope it helps you if you ever need it!
|