generated from Templates_CodeFirst/templateHtmlCss
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.
40 lines
686 B
40 lines
686 B
<html>
|
|
|
|
<body>
|
|
|
|
<?php
|
|
|
|
require_once("gateway/connection.php");
|
|
require_once('gateway/tacheGateway.php');
|
|
require_once('gateway/userGateway.php');
|
|
require_once("gateway/listeGateway.php");
|
|
require_once('metier/user.php');
|
|
require_once('metier/liste.php');
|
|
require_once('metier/tache.php');
|
|
require_once('modeles/mdlUser.php');
|
|
require_once('modeles/mdlListe.php');
|
|
|
|
|
|
|
|
//A CHANGER
|
|
$user= 'thchazot1';
|
|
$pass='achanger';
|
|
$dsn='mysql:host=localhost;dbname=dbthchazot1';
|
|
|
|
$id=1;
|
|
$name='Argent';
|
|
$content='Argent, Encore de l\'argent';
|
|
|
|
|
|
try{
|
|
|
|
require("Vues/signUp.php");
|
|
}
|
|
catch( PDOException $Exception ) {
|
|
echo 'erreur';
|
|
echo $Exception->getMessage();
|
|
}
|
|
?>
|
|
|
|
</body>
|
|
</html>
|