Files
docker-nginx-php-poc/www/app.php
Florian THIERRY 56916a7970 Initial commit.
2022-05-22 12:51:19 +02:00

12 lines
182 B
PHP

<?php
$message = "Application PHP";
?>
<!DOCTYPE>
<html>
<head>
<title>App php</title>
</head>
<body>
<h1><?php echo $message; ?></h1>
</body>
</html>