Jump to content

PostgreSQL


nicomen

Recommended Posts

  • 1 year later...

Hello ,

 

            I will give a module to connect with database,

function database_connect () {

                # the pg_connect function will connect the database using the user name

                # and password .

$pg=pg_connect("host=192.168.8.20 user=santhosh password=santhosh_89 dbname=santhoshkumar");

 

                # check the connection using the ping function if it fails

                # return the 0

                if (!pg_ping($pg)){ return 0; }

                # else return the database connection

                else{ return $pg; }

        }

 

Link to comment
https://forums.phpfreaks.com/topic/95156-postgresql/#findComment-807099
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.