Re: [PHP] Re: Problem with fetching values...

2008-12-29 Thread Eric Butera
On Mon, Dec 29, 2008 at 7:57 AM, Michelle Konzack wrote: > Am 2008-12-29 22:09:16, schrieb chris smith: >> > So, PostgreSQL catch the array by "name" >> > >> >pg_fetch_array($db_query, null, PGSQL_ASSOC) >> > >> > and MySQL use the "position" >> > >> >mysql_fetch_array($db_query, MYSQL_NUM

[PHP] Re: Problem with fetching values...

2008-12-29 Thread Michelle Konzack
Am 2008-12-29 22:09:16, schrieb chris smith: > > So, PostgreSQL catch the array by "name" > > > >pg_fetch_array($db_query, null, PGSQL_ASSOC) > > > > and MySQL use the "position" > > > >mysql_fetch_array($db_query, MYSQL_NUM) > > Why? > > http://www.php.net/mysql_fetch_array > > Use MYSQ

Re: [PHP] Re: Problem with fetching values...

2008-12-29 Thread Larry Garfield
On Monday 29 December 2008 2:26:46 am Michelle Konzack wrote: > Am 2008-12-28 16:11:15, schrieb Nathan Nobbe: > > OK. i would stop right there and ask yourself why.. there are tons of > > stable, working solutions out there that already do this, most notably > > for php5, PDO, > > > > http://us.p

[PHP] Re: Problem with fetching values...

2008-12-29 Thread Michelle Konzack
Am 2008-12-28 16:11:15, schrieb Nathan Nobbe: > OK. i would stop right there and ask yourself why.. there are tons of > stable, working solutions out there that already do this, most notably for > php5, PDO, > > http://us.php.net/manual/en/pdo.drivers.php > > which btw, is written in C ;) I ha