[PHP-DB] mysql_fetch_array missing first record

2001-08-07 Thread Jamie
Hi, I have this code to display records from a table by reading them into an array: while ($previews = mysql_fetch_array($result) { code to display record here... } For some reason it refuses to display the very first record in the table. Why is this and how can I get round it? Thanks. Ja

Re: [PHP-DB] mysql_fetch_array missing first record

2001-08-07 Thread Paul Burney
on 8/7/01 1:41 PM, Jamie ([EMAIL PROTECTED]) wrote: > while ($previews = mysql_fetch_array($result) { > code to display record here... > } > > For some reason it refuses to display the very first record in the table. > Why is this and how can I get round it? Are you calling mysql_fetch_array

Re: [PHP-DB] mysql_fetch_array missing first record

2001-08-07 Thread Paul DuBois
At 9:41 PM +0100 8/7/01, Jamie wrote: >Hi, > >I have this code to display records from a table by reading them into an >array: > >while ($previews = mysql_fetch_array($result) { > code to display record here... >} > >For some reason it refuses to display the very first record in the table. Th

Re: [PHP-DB] mysql_fetch_array missing first record

2001-08-07 Thread Jamie Saunders
This was indeed the problem, I was calling the mysql_fetch_array earlier in the code. Once removed it worked fine. Thanks. Jamie "Paul Burney" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > on 8/7/01 1:41 PM, Jamie ([EMAIL PROTECTED]) wrote: > > > while ($pr