Skip to content

Instantly share code, notes, and snippets.

@siathalysedI
Forked from Tynael/index.php
Created December 19, 2024 10:31
Show Gist options
  • Save siathalysedI/1e68a8d8c933e34ad19926adfd2be7dd to your computer and use it in GitHub Desktop.
Save siathalysedI/1e68a8d8c933e34ad19926adfd2be7dd to your computer and use it in GitHub Desktop.
Test PostgreSQL default connection with PHP
<?php
var_dump(
pg_connect("
host=localhost
port=5432
dbname=postgres
user=postgres
password=root
")
);
// Returns the PgSQL\Connection object if the connection is successful.
// Otherwise, returns false
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment