Re: [SQL] PostgreSQL and PHP
От | Stefano Brozzi |
---|---|
Тема | Re: [SQL] PostgreSQL and PHP |
Дата | |
Msg-id | 38B517EF.B4090EA0@bci.it обсуждение исходный текст |
Ответ на | PostgreSQL and PHP ("James Macken" <jmac@nemesis.com.au>) |
Список | pgsql-sql |
James Macken wrote: > > To those of you who use PHP with PostgreSQL, > > I'm trying to do a simple select inside a ".php3" script. The php3 script > simply says something like (the linux machine is not turned on so I can't > grab it exactly): > > <?php > $database = pg_connect("","","","mydb"); > pg_exec($database, "select * from mytable"); > echo "whatever" > ?> > > and all I get is (in the resulting web page): > > whatever > I guess you have more lines in your php script, have you lines like these: $result = pg_Exec ($database, $sqlStr); if (!$result) { echo "An error occured.\n"; exit; } for($i=0; $i<pg_NumRows($result); $i++) { $row = pg_Fetch_array($result, $i); echo $row[1]; } ??? if not, please RTFM. if you have written down these lines (or cut&pasted from the manual), and still it doesn't work, feel free to contact me. stefano
В списке pgsql-sql по дате отправления: