10 lines
225 B
PHP
10 lines
225 B
PHP
|
<?php
|
||
|
//Initialise the properties
|
||
|
require "property-manager.php";
|
||
|
$properties = load_properties();
|
||
|
header("Content Type: text/html");
|
||
|
?>
|
||
|
<html><head><title><?php echo($properties["html title"]);?></title>
|
||
|
|
||
|
</head>
|
||
|
</html>
|