test
insert($t);
$query = "SELECT * FROM Tache";
$con->executeQuery($query, array(':id' => array($id, PDO::PARAM_STR)));
$results=$con->getResults();
Foreach($results as $row){
echo ($row['id']. " | ". $row['name'] . " | ". $row['content'] . "
");
}
}
catch( PDOException $Exception ) {
echo 'erreur';
echo $Exception->getMessage();
}
?*/
?>