The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]() Code:
$vote = $db->query_read("SELECT forum.forumid, forum.title, forum.parentid, poll.pollid, poll.voters, pollvote.voteoption FROM " . TABLE_PREFIX . "forum AS forum LEFT JOIN " . TABLE_PREFIX . "poll AS poll ON(poll.pollid = forum.forumid) LEFT JOIN " . TABLE_PREFIX . "pollvote AS pollvote ON(pollvote.pollid = poll.pollid) ORDER BY forum.title "); $swapped=0; while ( $vote2 = $db->fetch_array($vote)) { $voters = fetch_censored_text($vote2['voters']); if ($swapped == 0) { $tempvoters = $voters; } else { $tempvoters = $tempvoters; } if ($tempvoters > 0) { $voteoption = fetch_censored_text($vote2['voteoption']); $cheapest = $cheapest + $voteoption; $tempvoters--; $swapped == 1; } else { $vote2['title'] = fetch_censored_text($vote2['title']); $vote2['forumid'] = fetch_censored_text($vote2['forumid']); $cheapest == 0; $swapped == 0; eval('$vote3 .= "' . fetch_template('Votes') . '";'); } } The above code sort of works but it stops before it's pulled all the data, I think this has something to do with the while loop running it's course before it's retrieved all the info. Example of what 'm trying to achieve --------------------------------------------------- Forum 1 (45 Vote Total) Forum 2 (0 Vote Total) Forum 3 (22 Vote Total) Forum 4 (14 Vote Total) I hope that's clear enough, and thanks for looking. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|