Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/12/2006, 16:09
gazuzax
 
Fecha de Ingreso: septiembre-2006
Mensajes: 196
Antigüedad: 18 años, 4 meses
Puntos: 0
hola Carxl, ya se me habia ocurido eso, de hecho lo hice asi:
esto fuera del ciclo:

$var = explode('-',$row["fecha_rsala"]);
$fecha_user="$var[2]-$var[1]-$var[0]";

el ciclo:
Código PHP:
do { 
echo 
"<table border = '1'> \n"
echo 
"<tr> \n"
echo 
"<td>".$row["fecha_user"]."</td> \n"//ESTA LINEA
echo "</table> \n"
} while (
$row mysql_fetch_array($result)); 
pero me seguia saliendo Notice: Undefined index: fecha_user in...(linea marcarda mas ariba) , y si ponia echo "<td>".$fecha_user."</td> \n"; me imprmia solo la primera fecha repetidamente en la lista

QUE HAGO??