Initial commit.

This commit is contained in:
Florian THIERRY
2022-05-22 12:51:19 +02:00
commit 56916a7970
6 changed files with 112 additions and 0 deletions

12
www/app.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
$message = "Application PHP";
?>
<!DOCTYPE>
<html>
<head>
<title>App php</title>
</head>
<body>
<h1><?php echo $message; ?></h1>
</body>
</html>