Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/11/2005, 01:12
Avatar de Tx
Tx
 
Fecha de Ingreso: enero-2002
Ubicación: Cba - Arg
Mensajes: 188
Antigüedad: 22 años, 3 meses
Puntos: 1
Hola,
para leer la variable necesitas hacer:

Código PHP:
$e $_REQUEST['email'];
$result mysql_db_query("elque_ani","SELECT * FROM tarjetas WHERE email = '".$e."'");
while (
$row mysql_fetch_array($result)){
   
$nom $row['nombre'];
   
$ape $row['apellido'];
   
$datos $nom." ".$ape;
   echo 
$datos."<br>";

y corregi la consulta SQL que tenias, saludos...