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
344 B
11 lines
344 B
<?php |
|
$PARAM_hote='localhost'; |
|
$PARAM_port='3306'; |
|
$PARAM_nom_bd='vpn'; |
|
$PARAM_utilisateur='user'; |
|
$PARAM_mot_passe="password"; |
|
|
|
|
|
$pdo_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION; |
|
$bdd = new PDO('mysql:host='.$PARAM_hote.';port='.$PARAM_port.';dbname='.$PARAM_nom_bd, $PARAM_utilisateur, $PARAM_mot_passe, $pdo_options); |
|
?>
|
|
|