Worked out a class to easily include subpages/content and put the footer in a function

This commit is contained in:
2014-06-28 15:13:12 +02:00
parent d5077b085a
commit 2f5b8734c4
7 changed files with 122 additions and 21 deletions

View File

@@ -3,10 +3,10 @@ require "config.php";
// Connect to MySQL database
$link = mysql_connect($host, $user, $password)
or die("Could not connect...");
or terminate("Could not connect...");
mysql_select_db($database)
or die("Could not open database");
or terminate("Could not open database");
?>