Tema: Ayuda!
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/04/2010, 22:23
Avatar de zreep
zreep
 
Fecha de Ingreso: octubre-2009
Ubicación: Argentina
Mensajes: 534
Antigüedad: 15 años, 1 mes
Puntos: 12
Respuesta: Ayuda!

en la validacion tengo esto:

Código PHP:
<?php


    session_start
();
    
    
$_SESSION['usuario'] = $_POST['usuario']; 

    
$login=$_SESSION['login'];

    if(
$login!="ok"){

        
header("Location: index.php?error=1");

    }

?>
y no se si esta bien pero me traia los datos del usuario, puse el where pero no hizo nada!!! hay algo que haya puesto mal? ahi lo muestro

Código PHP:
<?php
    
include_once("con.php");

    
$consulta="select pass, nombre, email, web from usuario WHERE nombre = '".$_SESSION['usuario']."'";;

    
$resultado=mysql_query($consulta);

    
$cant=mysql_num_rows($resultado);
    

    
$fila=mysql_fetch_array($resultado);        

?>           

        <div id="comments">
        <h3>_account</h3>
        <hr style="color:#efefef;">
        <form action="profile.php" method="post">
        <p>_<?php echo $_SESSION['usuario'];?><br><br>
        <b>web: </b>
        <input style="margin:0px 0px 0px 120px;" type="text" name="nick" value="<?php echo($fila[web]);?>" class="btn2"><br><br>
        <b>email: </b>
        <input style="margin:0px 0px 0px 110px;" type="text" name="mail" value="<?php echo($fila[email]);?>" class="btn2"><br><br>
        <b>cambiar password: </b>
        <input style="margin:0px 0px 0px 15px;" type="password" name="pass" value="<?php echo($fila[pass]);?>" class="btn2">
        <br><br><br>
        <input type="submit" name="agregar" value="guardar cambios" class="btn">
        </p>
        <br><br>

        </form>