home comics writing pictures archive about

page.php

Language: PHP Hypertext Preprocessor
Last Modified: 2022-02-19 5:59:50 PM UTC
File Size: 297 bytes
http://www.penguinstew.ca/page.php
<?php
if(!chdir($_SERVER['DOCUMENT_ROOT']))
{
print("ERROR: Can't set current directory to server root");
exit(1);
}
//Parameters
$name = $_GET["name"];
$title = "Penguin Stew - ".$name;
$leftmenu = true;
$contentPath = "pages/".$name.".html";
include 'templates/master.php';
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16