2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-06-04 14:49:19 +02:00
|
|
|
<h1>Peks<a id="hidea" href="peksentardhint.php">e</a>ntard</h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
2019-06-04 14:49:19 +02:00
|
|
|
$customBackgroundId = "pek_bg.jpg";
|
2019-05-18 17:58:23 +02:00
|
|
|
$pageTitle = "Peksentard";
|
|
|
|
include("includes/template.php"); // Display template with variable content
|
|
|
|
?>
|