Quote:
Originally Posted by Sarcoth
I tried the following with no luck for the top part. I think this is mostly correct, but I must be doing a variable the wrong way.
PHP Code:
$shuserid = $vbulletin->db->query_first("select userid from vBull_user where username='{$qo['shuser']}'"); $userinfo=fetch_userinfo($qo[$shuserid]);
|
PHP Code:
$shuserid = $vbulletin->db->query_first("
SELECT userid
FROM ". TABLE_PREFIX ."user
WHERE username = '" . $db->escape_string($qo['shuser']) . "'
");