X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=includes%2Fhome.php;fp=includes%2Fhome.php;h=cc378a2836c3dfdd0c389e4e20ea29e7407c54ef;hb=b5f60f89589412e18b51326378ab13b9a4fa0f19;hp=0000000000000000000000000000000000000000;hpb=65fc0194b3ae059f212c577db4f4a8fec43069d6;p=Project_webapp.git diff --git a/includes/home.php b/includes/home.php new file mode 100644 index 0000000..cc378a2 --- /dev/null +++ b/includes/home.php @@ -0,0 +1,24 @@ +query($requete); + echo "\n"; + echo "\n"; + while ($ligne = $result->fetch_row()) { + $code = htmlentities($ligne[0]); + $nom = htmlentities($ligne[1]); + $rue = htmlentities($ligne[2]); + $ville = htmlentities($ligne[3]); + echo "\n"; + } + echo "
Code_CLNomRueVille
$code$nom$rue$ville
\n"; + $result->close(); +} + +home(); + +?>