MAJ contenue et vérification HTML et CSS en cours
This commit is contained in:
ccunatbrule
2021-10-29 18:35:40 +02:00
parent a7ae429e83
commit 23a8352a92
183 changed files with 181 additions and 169 deletions

View File

@@ -0,0 +1,12 @@
<?php
function get_News()
{
global $bdd;
$req = $bdd->prepare('SELECT * FROM Event WHERE lieuevent="ORVEAU" ');
$req->execute();
$event1 = $req->fetchAll();
return $event1;
}