Skip to content
Snippets Groups Projects
db.php 255 B
<?php

class Db
{
	public $db;

	public function __construct ()
	{
		try
		{
			$this->db = new PDO('pgsql:host=tuxa.sme.utc;dbname=dbnf17p110', 'nf17p110', 'gXYc4mPg');
		}
		catch (Exception $e)
		{
        	die('Erreur : ' . $e->getMessage());
		}
	}
}