how do I retrieve that info?
I am trying to get a list of polls that are active, and all I am getting returnes is the word "Array". I looked and can't figure out what is wrong. Can someone help, please?
$pollist = $DB_site->query("SELECT
thread.threadid AS thread_id,
thread.title AS thread_title,
thread.pollid AS thread_pollid,
poll.pollid AS poll_pollid,
poll.active AS poll_active,
poll.dateline AS poll_dateline,
poll.public AS poll_public,
user.userid, user.username
FROM
".TABLE_PREFIX."thread AS thread,
".TABLE_PREFIX."poll AS poll,
".TABLE_PREFIX."user AS user
LEFT JOIN " . TABLE_PREFIX . "deletionlog AS dlog_t ON (dlog_t.primaryid = thread.threadid AND dlog_t.type = 'thread')
LEFT JOIN " . TABLE_PREFIX . "deletionlog AS dlog_p ON (dlog_p.primaryid = poll.pollid AND dlog_p.type = 'poll')
WHERE
thread.pollid = poll.pollid AND
poll.active = 1 AND
dlog_t.primaryid IS NULL AND
dlog_p.primaryid IS NULL
ORDER BY poll.dateline DESC LIMIT 10");
while($pollist = $DB_site->fetch_array($pollist))
{
eval('$activepolls[\'pollist\'] .= "' . fetch_template('pollist') . '";');
}
unset($pollist);
$DB_site->free_result($pollist);
|