Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/03/2014, 10:25
Jozhxe
 
Fecha de Ingreso: marzo-2014
Mensajes: 8
Antigüedad: 10 años, 8 meses
Puntos: 0
Respuesta: Solución Formulario php

Ocupé el switch, pero el problema es que ni siquiera entra al primer if, adjunto código

Código HTML:
Ver original
  1. Código HTML
  2. <!DOCTYPE html>
  3. <title>Página de Inicio</title>
  4. <link rel="stylesheet" type="text/css" href="http://www.clubalfayomega.cl/PaginaWeb/Portal_Club/Style.css" />
  5. <link rel="icon" type="image/png" href="http://www.clubalfayomega.cl/PaginaWeb/Blog/Im%C3%A1genes/img-logo.png" />
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. </head>
  8.  
  9. <body background ="http://www.clubalfayomega.cl/PaginaWeb/Imagenes/smoothy-gris-wallpapers_978_1280x1024%20copia.jpg">
  10. <div id="form">
  11. <form action = "http://www.clubalfayomega.cl/PaginaWeb/Portal_Club/ConquiIngresado.php" method="post" name= "formulario">
  12. <p align="right"><font color="#253491"><b>
  13. Usuario: </b></font><input type="text" name="usuario"> </input></p>
  14. <p align="right"><font color="#253491"><b>
  15. Contraseña: </b></font><input type="password" name="clave"> </input></p>
  16. <center>
  17. <input type="submit" name= "botonGuardar" value="Ingresar">
  18. </center>
  19. </form>
  20. </div>
  21. </body>
  22. </html>

Este formulario le envía las variables a la siguiente página php

Código PHP:
Ver original
  1. <?php
  2. if(isset($_POST ['usuario'])
  3. && isset($_POST['clave'])) {
  4.  
  5. $usuarioRegistrado = $_POST ['usuario'];
  6. $contraRegistrada = $_POST ['clave'];
  7.  
  8. $db = "conquis";
  9. $host = "localhost";
  10. $pw = "j1324";
  11. $user = "jozhxe";
  12.  
  13.  
  14. $con = mysql_connect ($host, $user,$pw) or die ("No se pudo autenticar la BD.");
  15. mysql_select_db ($db,$con) or die ("No se pudo conectar a la base de datos.");
  16.  
  17. $sql = "SELECT cargo FROM conquistador WHERE usuario='$usuarioRegistrado' AND clave='$contraRegistrada'";
  18. $resultado = mysql_query($sql,$con);
  19.  
  20. $row = mysql_fetch_array($resultado);
  21.  
  22. switch($row['cargo']){
  23.                
  24.                 case 'SubDirector':
  25.                 echo"<script language='javascript'>window.location='http://www.clubalfayomega.cl/PaginaWeb/Portal_Club/SubDirector.html'</script>";
  26.                 break;
  27.                 case 'Director':
  28.                 break;
  29.                 case 'Secretario':
  30.                 echo"<script language='javascript'>window.location='http://www.clubalfayomega.cl/PaginaWeb/Portal_Club/Secretario.html'</script>";
  31.                 break;
  32.                 case 'Tesorero':
  33.                 break;
  34.                 case 'Conquistador':
  35.                 break;
  36.             }
  37. }else{
  38. echo("Debes llenar todos los campos");
  39. }
  40. ?>