Initial Commit

This commit is contained in:
2013-02-08 20:18:32 +00:00
commit eaaf97ef7e
61 changed files with 3375 additions and 0 deletions

12
html/messages.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
if (isset($_SESSION['error']))
{
echo "<p class=\"error\">Error: ".$_SESSION['error']."</p>";
unset($_SESSION['error']);
}
if (isset($_SESSION['message']))
{
echo "<p class=\"message\">".$_SESSION['message']."</p>";
unset($_SESSION['message']);
}