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.
20 lines
442 B
20 lines
442 B
<?php
|
|
|
|
require_once "./Connection.php";
|
|
|
|
$dsn = "mysql:host=codefirst.iut.uca.fr/containers/Temoignages-db_form;dbname=".$_ENV["DATABASE"].";";
|
|
$login = $_ENV["USER"];
|
|
$password = $_ENV["PASSWORD"];
|
|
|
|
try {
|
|
|
|
$connection = new Connection($dsn,$login,$password);
|
|
|
|
echo "Connection OK !";
|
|
|
|
}catch (PDOException $PDOException){
|
|
echo $PDOException->getMessage();
|
|
echo $PDOException->getCode();
|
|
return http_response_code(404);
|
|
}
|