summaryrefslogtreecommitdiff
path: root/connexionbase.php
blob: 3e1d3099dfc5639ed352bfd4875b7bd1c53fefa4 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
try
{
	$base = new PDO('mysql:host=localhost;dbname=lelionetlecolibri;charset=utf8', 'root', 'qsdfgh');
}
catch (Exception $e)
{
	die('Erreur : ' . $e->getMessage()); // message d'erreur si connexion impossible
}
?>