I want that every user visiting the page can see how many times the button 'Vote' has been pressed by others. Not begin at 1 when visiting my page
[code=html]
<form name="HOME">
<input type="text" value="1" name="CASA">
<input onclick="docume nt.HOME.CASA.va lue = Number(HOME.CAS A.value)+1;" type="button" value="Vote"> </form>
[/code]
[code=html]
<form name="HOME">
<input type="text" value="1" name="CASA">
<input onclick="docume nt.HOME.CASA.va lue = Number(HOME.CAS A.value)+1;" type="button" value="Vote"> </form>
[/code]
Comment