Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/11/2011, 14:44
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Insertar desde Archivo a MySQL

Simple, agrega un contador, si el contador es = 0, usas continue; para brincar:
Código PHP:
Ver original
  1. $count = 0;
  2. while (readcsv()) {
  3.        if ($count == 0) continue;
  4.  
  5.        $count++;
  6. }

Saludos.