Forum Moderators: phranque
Questions:
1) So how is this done? Using php etc?
2) What are the requirements of the web host? MySQL blah blah?
3) Is there a software that I can buy that will do the job? Something like a web blogger?
If a new website gets a rating of 5 stars and then 1 star, the overall rating should immediately display 2 and half stars. Lots of programming required here?
As you can see from the way the questions are framed, I am no programming expert. I will probably get a friend to do it. What do you think my friend will charge me if I manage to explain what I want?
you can use any programming language for this and you need to save some data to disk. so you won't need a mysql blabla.
if the page is voted 2 times:
1.) 5
2.) 1
then the overall value would be 6 and the votecount 2 so you can just calculate it: 6 / 2 = 3 (not 2.5 stars as you stated)
you simply have to track the overall value of all votes and the number of votes (in a file for example).
as brett said, you there are 1000s of such scripts in different languages and you'll get one for free for shure.