Log in

View Full Version : Query Problem


burnist
05-26-2004, 06:49 PM
$itemsquery = $DB_site->query("SELECT items.* FROM items LEFT JOIN items_users ON items.id=items_users.itemid
WHERE items_users.userid = $bbuserinfo[userid]");
while($item = $DB_site->fetch_array($itemquery)){
eval("\$inventorybit .= \"".fetch_template("inventory_bit")."\";");
}



This block of code is not showing its output, ifs its even producing any at all, Im still a newbi coder and this is my first time using a join of anykind so im kinda lost here, any help would be most appreciated :)

Xenon
05-27-2004, 12:25 PM
while($item = $DB_site->fetch_array($itemsquery)){

you missed the 's' in itemsquery ;)

burnist
05-27-2004, 06:33 PM
OMFG im such an ass, sorry for wasting your time XDXDXD

Xenon
05-27-2004, 07:06 PM
*gg*

np, nobody's perfect :)