You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
<?php
|
|
|
|
// connexion a la base
|
|
|
|
try {
|
|
$bdd = new PDO('mysql:host=<ip>;dbname=<dbname>','<USER>','<PWD>', array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
|
|
}
|
|
catch(PDOException $e)
|
|
{
|
|
echo " Erreur de connexion, contactez l'administrateur du site !";
|
|
}
|
|
|