vaskies
01-22-2010, 08:45 PM
I tried using the code directly from the league module, but had no luck because the tables being queried don't exist.
$league = $DB->query("SELECT l.mid, l.gid, AVG(l.position) AS position, SUM(l.points) as points,
m.name
FROM ibf_games_league AS l
LEFT JOIN ibf_members AS m ON (l.mid=m.id)
".$extquery."
GROUP by mid
ORDER BY points DESC");
while ($row = $DB->fetch_row($league) ) {
extract($row);
$rank++;
$name = $row['name'];
if ($ibforums->member['id'] == $mid) {
$name = "<b>".$name."</b>";
}
Where and how are these "ibf" database tables defined? Needless to say I've extensively searched and unfortunately haven't come up with anything yet...
$league = $DB->query("SELECT l.mid, l.gid, AVG(l.position) AS position, SUM(l.points) as points,
m.name
FROM ibf_games_league AS l
LEFT JOIN ibf_members AS m ON (l.mid=m.id)
".$extquery."
GROUP by mid
ORDER BY points DESC");
while ($row = $DB->fetch_row($league) ) {
extract($row);
$rank++;
$name = $row['name'];
if ($ibforums->member['id'] == $mid) {
$name = "<b>".$name."</b>";
}
Where and how are these "ibf" database tables defined? Needless to say I've extensively searched and unfortunately haven't come up with anything yet...