Initial Commit
This commit is contained in:
12
html/messages.php
Normal file
12
html/messages.php
Normal 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']);
|
||||
}
|
||||
Reference in New Issue
Block a user