The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#6
|
|||
|
|||
![]()
The query_first call would give you $info['foo'] and $info['moo']
and $info['boo'] without doing a fetch_array call. Example... Code:
$info = $db->query_first(" SELECT foo, moo, boo FROM table WHERE id = 5 "); if ($info) { echo $info['foo'] . ' ' . $info['moo'] . ' ' . $info['boo']; } else { echo 'bust'; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|