mira ahora me dice que length es nulo o no es un objeto sabes x q?
y como hago para mostrarle le mensaje de cual esta bein y cual mal ya involucrando varias preguntas?
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<script>
function validar(respuesta1) {
for (i=0; i<respuesta1.length; i++) {
if (respuesta1[i].checked) {
return respuesta1[i].value;
}
}
}
</script>
</head>
<body>
<form id="form1" name="preguntas" method="post" action="">
1.-¿Cuantas casillas tien un tablero de ajedrez?
<input type="radio" id="respuesta1" name="respuesta1" value="48" onclick="return validar()"/>a) 48
<input type="radio" id="respuesta1" name="respuesta1" value="64" onclick="return validar()"/>b) 64
<input type="radio" id="respuesta1" name="respuesta1" value="84" onclick="return validar()"/>c) 84 <br /><br />
2.-¿Cuantas fichas hay en un ajedrez?
<input type="radio" id="respuesta2" name="respuesta2" value="33" onclick="return validar()"/>a) 33
<input type="radio" id="respuesta2" name="respuesta2" value="64" onclick="return validar()"/>b) 64
<input type="radio" id="respuesta2" name="respuesta2" value="55" onclick="return validar()"/>c) 55 <br /><br />
<!--<input type="submit" name="enviar" value="Enviar respuesta" onclick="return validar()" />-->
</form>
</body>
</html>