Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/05/2004, 16:07
Avatar de Genetix
Genetix
 
Fecha de Ingreso: febrero-2002
Ubicación: Lima - Perú
Mensajes: 1.600
Antigüedad: 22 años, 2 meses
Puntos: 45
hola!!!

prueba si funciona con esto

Código PHP:
$sql=mysql_query("Select * from tu tabla Where id=123");

if(
$row=mysql_fetch_array($sql)){

do{
 echo 
$row['id'];
 echo 
$row['codigo'];
 echo 
$row['precio'];
 echo 
$row['cantidad'];
 echo 
"<br>";
}while(
mysql_fetch_array($sql));


seria mejor si pusieras tu codigo para poder ayudarte

Salu2!

Última edición por Genetix; 12/05/2004 a las 16:08