Hola, Agatta.
Prueba con esto:
Código PHP:
<html>
<head>
<script>
function pulsar(obj) {
if (!obj.checked) return
elem=document.getElementsByName('chk');
for(i=0;i<elem.length;i++)
elem[i].checked=false;
obj.checked=true;
}
</script>
</head>
<body>
<input type="checkbox" name="chk" onclick="pulsar(this)" />
<input type="checkbox" name="chk" onclick="pulsar(this)" />
<input type="checkbox" name="chk" onclick="pulsar(this)" />
</body>
</html>
Saludos,