PDA

View Full Version : How do I modify the way a poll is chosen?


Volconvo
11-30-2004, 05:13 PM
Hey,

I currently have the vbadvanced script getting polls from about 4 of my forums, and I notice that it takes the most recently posted poll as the one to showcase on the portal.

How can I make it so it showcases the poll with the most recent replies, rather than simply the newest new poll topic. In other words, it would be cool to show polls that have the most recent activity. They are likely the busy one's that people are interacting with.

Thanks for any help :D

p.s. great script..made my site 10x better :D

-Sean
http://www.volconvo.com

Volconvo
12-04-2004, 02:55 AM
anyone?

Our Sponsors
 

Brian
12-04-2004, 02:29 PM
If you look in your currentpoll.php for this code:
ORDER BY poll.pollid DESC

And replace it with:
ORDER BY lastpost DESC

Then that should pull the poll that was last replied to.

Volconvo
12-05-2004, 02:35 AM
Thanks Brian! :)