isidore/example/site/index.html.php

11 lines
159 B
PHP
Raw Normal View History

2022-11-08 14:58:20 +00:00
<?php
$title = "Home";
include("templates/header.html.php");
?>
<p>
Hello, World! This is an example page.
</p>
<?php
include("templates/footer.html.php");
?>