SV: [PHP-DB] PHP/DB speed

2003-12-22 Thread Henrik Hornemann
2003 23:16 Til: PHP DB Group Emne: [PHP-DB] PHP/DB speed Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result

Re: [PHP-DB] PHP/DB speed

2003-12-22 Thread JeRRy
Robin Kopetzky wrote: Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result)) { build

Re: [PHP-DB] PHP/DB speed

2003-12-22 Thread mike karthauser
On 56K the page would probably either 1) timeout on the way you have it currently or 2) only display part of the page/form and not read the whole page correctly. I dunno give us the URL, I am sure someone is on dialup to give it a wurl. Try the url with web analyzer

[PHP-DB] PHP/DB speed

2003-12-21 Thread Robin Kopetzky
Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result)) { build OPTION stmt }

Re: [PHP-DB] PHP/DB speed

2003-12-21 Thread John W. Holmes
Robin Kopetzky wrote: Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result)) { build OPTION stmt

Re: [PHP-DB] PHP/DB speed

2003-12-21 Thread Richard Davey
Hello Robin, Sunday, December 21, 2003, 10:15:35 PM, you wrote: RK The code I am using is thus and is retrieving around 2,500 records: RK $result = mysql_query($sql) RK while ($row = mysql_fetch_array($result)) RK { RK build OPTION stmt RK } You're building a

Re: [PHP-DB] PHP/DB speed

2003-12-21 Thread Miles Thompson
At 03:15 PM 12/21/2003 -0700, Robin Kopetzky wrote: Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result))