fopen() and fgetcsv()

fopen() and fgetcsv()

am 06.12.2007 21:29:44 von mantrid

I am using fopen() and fgetcsv() to open an excel file and extract data for
upload to mysql database. The doesnt seem to be a parameter in either of
these functions for ommitting the first row of the excel file. I am
currently using While ...... statement to read the rows and do things with
them. Can I ommit the first line without replacing my 'While....' loop with
a 'For......' loop?

Ian

Re: fopen() and fgetcsv()

am 07.12.2007 00:39:00 von Michael

mantrid wrote:
> I am using fopen() and fgetcsv() to open an excel file and extract data for
> upload to mysql database. The doesnt seem to be a parameter in either of
> these functions for ommitting the first row of the excel file. I am
> currently using While ...... statement to read the rows and do things with
> them. Can I ommit the first line without replacing my 'While....' loop with
> a 'For......' loop?
>
> Ian
>
>

Certainly, take your pick, both should work fine:

$i = 0;
while ($i++ && false !== $data = fgetcsv($fh, 1024)) {
if ($i == 1)
continue;
print_r($data);
}


$firstline = true;
while (false !== $data = fgetcsv($fh, 1024)) {
if ($firstline == true) {
$firstline = false;
continue;
}
print_r($data);
}


- Michael

Re: fopen() and fgetcsv()

am 07.12.2007 00:41:54 von luiheidsgoeroe

On Thu, 06 Dec 2007 21:29:44 +0100, mantrid wrot=
e:

> I am using fopen() and fgetcsv() to open an excel file and extract dat=
a =

> for
> upload to mysql database. The doesnt seem to be a parameter in either =
of
> these functions for ommitting the first row of the excel file. I am
> currently using While ...... statement to read the rows and do things=
=

> with
> them. Can I ommit the first line without replacing my 'While....' loo=
p =

> with
> a 'For......' loop?

By discarding the first row before the while loop?

$fh =3D fopen(...);
fgetcsv($fh);
while($row =3D fgetcsv($fh)){
//stuff...
}
-- =

Rik Wasmus

Re: fopen() and fgetcsv()

am 07.12.2007 14:05:55 von Olaf Schinkel

mantrid schrieb:
> I am using fopen() and fgetcsv() to open an excel file and extract data for
> upload to mysql database. The doesnt seem to be a parameter in either of
> these functions for ommitting the first row of the excel file. I am
> currently using While ...... statement to read the rows and do things with
> them. Can I ommit the first line without replacing my 'While....' loop with
> a 'For......' loop?
>
> Ian
>
>
Remove the first line....
$fh = fopen(...

fgets($fh); <- only insert this line into your code

while(...


Olaf

Re: fopen() and fgetcsv()

am 07.12.2007 14:17:58 von colin.mckinnon

On 7 Dec, 13:05, Olaf Schinkel wrote:
> mantrid schrieb:> I am using fopen() and fgetcsv() to open an excel file and extract data for
> > upload to mysql database. The doesnt seem to be a parameter in either of
> > these functions for ommitting the first row of the excel file. I am
> > currently using While ...... statement to read the rows and do things with
> > them. Can I ommit the first line without replacing my 'While....' loop with
> > a 'For......' loop?
>
> > Ian
>
> Remove the first line....
> $fh = fopen(...
>
> fgets($fh); <- only insert this line into your code
>
> while(...
>
> Olaf

I suspect if I suggested that validating the record with a regex
instead of using positional information might be more appropriate I'd
just confuse people. So I won't.

C.

Re: fopen() and fgetcsv()

am 07.12.2007 20:01:59 von mantrid

thank you everyone

"mantrid" wrote in message
news:YYY5j.2742$1j1.2444@newsfe7-gui.ntli.net...
> I am using fopen() and fgetcsv() to open an excel file and extract data
for
> upload to mysql database. The doesnt seem to be a parameter in either of
> these functions for ommitting the first row of the excel file. I am
> currently using While ...... statement to read the rows and do things
with
> them. Can I ommit the first line without replacing my 'While....' loop
with
> a 'For......' loop?
>
> Ian
>
>