
08-09-2005, 04:11 PM
|
 |
|
|
Join Date: Jul 2004
Location: Switzerland
Posts: 1,551
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Cyricx
O rock, so it's as simple as
Code:
$hook_query_fields .= ",inferno_user.*, inferno_jobs.*, inferno_element.*, inferno_clan.*";
$hook_query_joins .= " LEFT JOIN inferno_user AS inferno_user ON(inferno_user.rid = user.userid)
LEFT JOIN inferno_jobs AS inferno_jobs ON(inferno_jobs.jname = inferno_user.class)
LEFT JOIN inferno_element AS inferno_element ON(inferno_element.eid = inferno_user.element)
LEFT JOIN inferno_clan AS inferno_clan ON(inferno_clan.cid = inferno_user.inclan)";
??
That's sweet, I'm guessing .= just adds it to the end of whatever the variable is currently defined as correct?
|
That's correct
|