mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Mise en place du code, jusqu'ici développé en local
This commit is contained in:
parent
d8e121057e
commit
538d242f18
160 changed files with 28859 additions and 0 deletions
19
mvc/conn_bdd.php
Executable file
19
mvc/conn_bdd.php
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
//CETTE PAGE GERE LA CONNEXION A LA BASE DE DONNEES
|
||||
$host = 'localhost';
|
||||
$dbname = 'raspisms';
|
||||
$user = 'root';
|
||||
$password = 'DATABASE_PASSWORD';
|
||||
|
||||
try
|
||||
{
|
||||
// On se connecte à MySQL
|
||||
$bdd = new PDO('mysql:host=' . $host . ';dbname=' . $dbname, $user, $password, array(PDO::ATTR_PERSISTENT => TRUE));
|
||||
$bdd->exec("SET CHARACTER SET utf8");
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
// En cas d'erreur, on affiche un message et on arrête tout
|
||||
die('Erreur : '.$e->getMessage());
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue