How to add PostgreSQL support in PHP in the XAMPP bundle?

Apache: v.2.2.14
PHP: 5.3.1
PostgreSQL: 8.4
XAMPP: version 1.7.3

+4
source share
2 answers

XAMPP comes with php_pgsql.dll / so that is all you have to do is edit php.ini and remove the semicolon before

extension = php_pgsql.dll 

and then restart apache.

+11
source

All Articles