This commit is contained in:
2022-09-20 09:46:06 +02:00
parent 3ef5375b73
commit 56a0519cee
6 changed files with 136 additions and 0 deletions

10
TP/TP2_codes/test.php Normal file
View File

@ -0,0 +1,10 @@
<html>
<body><h1>Test PHP </h1>
<p>This is the PHP web page for this server.</p>
<?php
$date = date("d-m-Y");
$heure = date("H:i");
Print("Bonjour Nous sommes le $date et il est $heure");
?>
</body>
</html>