Re: [PHP] Mysql Help #2

2001-08-03 Thread Tom Carter
pages overhead (one page on a site I hvae currently takes almost 2 seconds on average to build...eek!) "elias" <[EMAIL PROTECTED]> wrote in message - Original Message - From: "elias" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August

Re: [PHP] Mysql Help #2

2001-08-02 Thread Miles Thompson
Looks fine to me Miles At 10:31 AM 8/2/01 +0200, elias wrote: >Hi again. > >$result = mysql_query("SELECT id FROM table"); >$id_array = array(); > >while ($r = mysql_fetch_array($result)) >$id_array[] = $r["id"]; > >// now $id_array[] is an array of IDs that was grabbed from the database. > >

[PHP] Mysql Help #2

2001-08-02 Thread elias
Hi again. $result = mysql_query("SELECT id FROM table"); $id_array = array(); while ($r = mysql_fetch_array($result)) $id_array[] = $r["id"]; // now $id_array[] is an array of IDs that was grabbed from the database. Any faster and/or better approache to build the $id_array? -- PHP Gener