11 lines
159 B
PHP
11 lines
159 B
PHP
|
<?php
|
||
|
$title = "Home";
|
||
|
include("templates/header.html.php");
|
||
|
?>
|
||
|
<p>
|
||
|
Hello, World! This is an example page.
|
||
|
</p>
|
||
|
<?php
|
||
|
include("templates/footer.html.php");
|
||
|
?>
|