Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/03/2013, 12:37
Avatar de loncho_rojas
loncho_rojas
Colaborador
 
Fecha de Ingreso: octubre-2008
Ubicación: En el mejor lugar del mundo
Mensajes: 2.704
Antigüedad: 16 años, 1 mes
Puntos: 175
Respuesta: Problema al loguearse

Haz esto y cuentanos que te sale:

Código PHP:

<?php
include("Conexion.php");

if (isset(
$_POST["btnentrar"])){
    
    echo 
"<br />variable1: ".$txtid= isset( $_POST["ide"]) ? $_POST["ide"] : "";
    echo 
"<br />variable2: ".$txtpwd= isset( $_POST["pwd"]) ? $_POST["pwd"] : "";
    
$consulta= ("select * from usuario where id = '$txtid' and contra='$txtpwd'");
    
$sentenciamysql_query($consulta,$con)or die(mysql_error());
    
    while (
$rs=mysql_fetch_array($sentencia,$db)){
        echo 
"<br />variable3: ".$nombre $rs["usunom"]; 
    }
    
    if (isset(
$nombre)){
        
session_start();
        
$_SESSION['login']=$txtid;
        
$_SESSION['nombre']=$nombre;
        
header ("location: Mis-Dato.php");
    }else{
        echo 
"Usuario Inconrrecto";
        echo 
"<a href= 'Acceso.php'></a>";
    
    }
}
?>
__________________
Ayudo con lo que puedo en el foro, y solo en el foro.. NO MENSAJES PRIVADOS.. NO EMAILS NI SKYPE u OTROS.

Antes de hacer un TOPICO piensa si puedes hallarlo en Google o en el Buscador del Foro...