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
passthru('/usr/local/pgsql/bin/psql -f select.sql -H -U yohgaki -d test');
?>
where "select.sql" is query you need.
--
Yasuo Ohgaki
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
- [PHP-DB] PostgreSQL and HTML output Edwin Robertson
- Re: [PHP-DB] PostgreSQL and HTML output Jason Wong
- Re: [PHP-DB] PostgreSQL and HTML output Maarten Verheijen
- [PHP-DB] Re: PostgreSQL and HTML output Yasuo Ohgaki
- [PHP-DB] Re: PostgreSQL and HTML output Yasuo Ohgaki
