I want to make a voting system that look a little something like this:
Each user gets 10 votes a day they use to vote for various people.
Every 24 hours it gets refilled up to 10 again.
Users dont need to register to vote, I just want to let different IP address vote
A top 5 list of people that were voted on the most that updates every 24 hours.
I also want to have a top 5 list of the week, month, and all time
A line graph of each person's point fluctuation over time (just like companies stock price) in their profiles.
I was thinking I could do the top 5 list with arrays & for loops or something, but I got no idea how to detect IP addresses & let people vote. Would it be easy to make something like this w/ PHP?
Each user gets 10 votes a day they use to vote for various people.
Every 24 hours it gets refilled up to 10 again.
Users dont need to register to vote, I just want to let different IP address vote
A top 5 list of people that were voted on the most that updates every 24 hours.
I also want to have a top 5 list of the week, month, and all time
A line graph of each person's point fluctuation over time (just like companies stock price) in their profiles.
I was thinking I could do the top 5 list with arrays & for loops or something, but I got no idea how to detect IP addresses & let people vote. Would it be easy to make something like this w/ PHP?