Cleaned up ugly HTML and renamed index.php to simplog.php

This commit is contained in:
2013-07-27 23:38:17 +02:00
parent 40de6d2290
commit e886d4f461
10 changed files with 82 additions and 37 deletions

18
includes/htmlcode.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
function start_html($title)
{
print "
<html>
<head>
<title>$title</title>
</head>
<body>\n";
}
function end_html()
{
print "\n\n</body>\n</html>\n";
}
?>