Add example

This commit is contained in:
Vincent Letourneau
2017-01-23 11:03:50 +01:00
parent 995868ecc2
commit ca9f2919aa

View File

@@ -1,10 +1,15 @@
<!DOCTYPE html> <?php
include '../app/vendor/autoload.php';
$foo = new App\Acme\Foo();
?><!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Docker Nginx PHP MySQL</title> <title>Docker <?php echo $foo->getName(); ?></title>
</head> </head>
<body> <body>
<h1>Docker Nginx PHP MySQL</h1> <h1>Docker <?php echo $foo->getName(); ?></h1>
</body> </body>
</html> </html>