P: ¿Como puedo comprobar si un checkbox está seleccionado?
R: [ver ejemplo] Código PHP:
<html>
<head>
<script language="JavaScript">
function estado(){
if (document.frm.chk.checked)
alert("Marcado");
else
alert("Desmarcado");
}
</script>
</head>
<body>
<form name="frm" onClick="estado()">
<input type="checkbox" name="chk">Selector<br>
</form>
</body>
</html>