Buenas tardes amigos de SOLOCODIGO, soy nuevo en PHP, y tengo un problema con un formulario de autenticación de usuarios. Este el formulario:
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title>Inventario D.E.A.S.</title>
<script type = "text/javascript" src = "../Funciones/Js/ComprobarNavegador.js"></script>
<link rel = "stylesheet" type = "text/css" href = "../Estilos/Estilos.css"/>
</head>
<body>
<form name = "LoginVis"
action = "/SistemasPHP/InventarioDEAS/LoginCtl.php"
id = "Forma"
method = "get">
<br/>
<br/>
<br/>
<br/>
<br/>
<table align = "center"
width = "605"
height = "283"
border = "15">
<tr class = "Titulo">
<td colspan = "2">Sistema Inventario DEAS</td>
</tr>
<tr class = "FondoImagen">
<td width = "400"
colspan = "2">
<img src = "MisImagenes/logomppa.png"
alt = ""
width = "564"
height = "153" />
</td>
</tr>
<tr align = "center"
style = "background-color:#39F">
<td>
<strong>
<label>Usuario</label>
</strong>
<p> <input id = "usuario"
name = "txtUsuario"
type = "text"
onFocus = "this.value=''"/>
</p>
</td>
<td>
<strong>
<label>Password</label>
</strong>
<p> <input id = "password"
name = "txtPassword"
type = "password"
onFocus = "this.value=''"/>
</p>
</td>
</tr>
<?php
if (isset($_GET['Error'])):
echo "<tr>" .
"<td align = 'center' " .
"colspan = '2' " .
"class = 'MensajesError'> " .
$_GET['Error'] .
"</td>" .
"</tr>";
endif;
?>
<tr class = "Pie">
<td align = "right"
colspan = "2">
<input name = "btnAceptar"
type = "submit"
value = "Aceptar"
style = "font-size:20px""/>
<input name = "btnSalir"
type = "submit"
value = " Salir "
style = "font-size:20px"/>
</td>
</tr>
</table>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<input type = "hidden" value = "Autenticar" name = "Accion" />
</form>
</body>
</html>
Cuando presiono el botón SUBMIT(ACEPTAR) para ir al control especificado en el ACTION del formulario no hace nada, ni siquiera va al control especificado ¿por qué será? ¿pueden ayudarme?
Gracias de antemano por cualquier ayuda.