hi everyone,
im trying to create a little form that would simply keep the count of people that have voted and the score of the votes .
here is my form in static html
<form name = "contestants" method="POST">
<font size = "3" face="Arial" color="#dddddd">
<input type="radio" name ="contestant" value ="MissFrank">MissFrank<br>
<input type="radio" name ="contestant" value ="KandyRain">KandyRain<br>
<input type="radio" name ="contestant" value ="Jhon and Edward">Jhon and Edward<br>
<input type="radio" name ="contestant" value="Lloyd Daniels">Lloyd Daniels<br>
<input type="radio" name ="contestant" value="Joseph McElderry">Joseph McElderry</br>
<input type="radio" name ="contestant" value="Rikki Loney">Rikki Loney<br>
<input type="radio" name="contestant" value="Lucie Jones">Lucie Jones<br>
<input type="radio" name="contestant" value="Stacey Solomon">Stacey Solomon<br>
<input type="radio" name="contestant" value="Rachel Adedeji">Rachel Adedeji<br>
<input type="radio" name="contestant" value="Danyl Jhonson">Danyl Jhonson<br>
<input type="radio" name="contestant" value="Olly Murs ">Olly Murs<br>
<input type="radio" name="contestant" value="Jamie Archer">Jamie Archer<br>
<input type="submit" value="vote">
</font>
</form>
i would be very happy if somebody would tell me how to get this working in php.
thanks