Re: [PHP] help: column into array?

2001-02-15 Thread Richard Lynch
how can I reference a result set by array index numbers??? id_field field | 1 first 1 second 1 third 2 fourth 2 fifth how can I do something like this: $array=mysql_db_query($database, $sql, $link_id); echo

[PHP] help: column into array?

2001-02-11 Thread andrew
Hi PHPers! how can I reference a result set by array index numbers??? this $sql="select field from table where id_field = 1"; would return a result like this: field --- first second third from this table id_field field | 1 first 1 second 1