Answers for "connect to postgresql using php on ubuntu"

PHP
1

php connect to postgresql

<?php
    $db_connection = pg_connect("host=localhost dbname=dbname user=username password=password");
	$result = pg_query($db_connection, "SELECT lastname FROM employees");
?>
<?php  // with PDO
    $myPDO = new PDO('pgsql:host=localhost;dbname=dbname', 'username', 'password');
	$result = $myPDO->query("SELECT lastname FROM employees");
?>
Posted by: Guest on March-20-2021

Code answers related to "connect to postgresql using php on ubuntu"

Browse Popular Code Answers by Language