[PHP-DB] Re: PostgreSQL and HTML output

2002-10-18 Thread Yasuo Ohgaki
Edwin Robertson wrote: With psql you can get all your output in HTML format. Anyone know of a way to do this in PHP? It's psql feature and there is no automatic HTML format in PHP's pgsql module. If really would like, you can use passthru() and psql. ?php

[PHP-DB] Re: PostgreSQL and HTML output

2002-10-18 Thread Yasuo Ohgaki
If you need to dump query result for debugging purpose, etc. Try something like, ?php $db = pg_connect(); $result = pg_query($db, 'SELECT * FROM some_table'); echo "pre\n"; var_dump(pg_fetch_all($result)); echo "/pre\n"; ? You need PHP 4.3.0-dev or