The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]()
If you use query_first() you don't need fetch_array(), because it does that internally.
So instead of: Code:
$getuser=$DB_site->query("SELECT * FROM user WHERE userid=$bbuserinfo[userid]"); while ($user=$DB_site->fetch_array($getuser)) { $username=$user[username]; $userlastvisit=$user['lastvisit']; $newposts="<a href=\"search.php?s=$session[sessionhash]&action=getnew\">View New Posts</a>"; $logout="<smallfont><a href=\"member.php?s=$session[sessionhash]&action=logout\">Log Out</a>"; $markallread="<a href=\"member.php?s=$session[sessionhash]&action=markread\">Mark All Forums Read</a>"; } Code:
$user=$DB_site->query_first("SELECT * FROM user WHERE userid=$bbuserinfo[userid]"); $username=$user[username]; $userlastvisit=$user['lastvisit']; $newposts="<a href=\"search.php?s=$session[sessionhash]&action=getnew\">View New Posts</a>"; $logout="<smallfont><a href=\"member.php?s=$session[sessionhash]&action=logout\">Log Out</a>"; $markallread="<a href=\"member.php?s=$session[sessionhash]&action=markread\">Mark All Forums Read</a>"; |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|