Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/11/2002, 08:58
mauro28
 
Fecha de Ingreso: noviembre-2002
Mensajes: 53
Antigüedad: 22 años
Puntos: 0
De acuerdo facil

$row = 0;
$fp = fopen (".d","r");
while ($data = fgetcsv ($fp, 10000000, " "))

{
$num = count ($data);
$row++;

$insertar="INSERT INTO d (cel,cer,nombres,primer_apellido,segundo_apellido, fecha) VALUES ('$data[0]','$data[1]','$data[2]','$data[3]','$data[4]')";
mysql_query($insertar) or die ("no inserto registros");

}