Ciao a tutti,

ha ragione Mich_, non ha senso usare i radio. Usa dei checkbox con uno scriptino... una cosa del genere:
codice:
<html> 
<head> 
<script language="javascript">
function MassimoUno(cc){
	var ff = cc.form
	if(cc.checked)
		for(i=0;i<ff.elements.length;i++)
			if(ff.elements[i].type=='checkbox' && ff.elements[i].name!=cc.name)
				ff.elements[i].checked=false
		
}
</script>
</head> 
<body> 
<form method=post action=contatore.php> 
<input type=checkbox name="Elemento1" onclick="MassimoUno(this)">-Elemento1
 
<input type=checkbox name="Elemento2" onclick="MassimoUno(this)">-Elemento2
 
<input type=submit value=Vota!> 
</form> 
</body> 
</html>
sciauz