The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Trying to list ALL entries in 1 column
I've been attempting to setup a page that includes the display of ALL v3 arcade games (just the titles as an easy reference to what is installed).
I'm playing with the following query for it at the moment; Code:
// Gamecount list $list = $db->query_read("SELECT arcade_games.title FROM " . TABLE_PREFIX . "arcade_games AS arcade_games WHERE gameid IS NOT NULL GROUP BY arcade_games.title ORDER BY title ASC "); while ($glist = $db->fetch_array($list)) { eval('print_output("' . fetch_template('arcade_list') . '");'); |
#2
|
|||
|
|||
In general you do something like:
PHP Code:
|
#3
|
||||
|
||||
Sorted! Thanks a lot for that example. I had a major breakthrough in how that all works together looking at that.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|