El IDE que estoy usando que es Eclipse me muestra los siguientes errores:
1) en la linea "14" de analisis.php traducido me dice: "apertura de llave inesperada"
2) y en el mismo archivo analisis.php en la linea "16" donde agrego el else me dice: "ELSE inesperado, se esperaba un end of file EOF"
El error tiene que estar ahi pero no lo veo, reviso y reviso... todas las llaves se abren y cierran correctamente, tengo la condicion del if entre parentesis, y en general la sintaxis del isset me parece normal, por favor ayudenme que estoy que desinstalo el eclipse y me pego un tiro
Estos son los dos archivos:
form.html
Código:
Y<html> <head> <title>HTML-Form</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body> <h1>Ingrese los datos! (form.html)</h1> <form action="analisis.php" method="post"> <input type="radio" name="gender" value="0"> Sr. <input type="radio" name="gender" value="1"> Sra. <br> Su nombre: <br> <input type="text" name="lastName"> <input type="submit"> </form> </body> </html>
analisis.php
Código:
<html> <head> <title>Analisis</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body> <h2>Analisis del formularios (analisis.php)</h2> <p> <?php if (isset($_POST['gender']){ echo "Algun sexo fue seleccionado"; } else { echo "Ningun sexo fue seleccionado"; } ?> </p> </body> </html>