<?php
### security.php ###
// a client is rerouted here if he or she tries to use a "../" to
// access files that they are not supposed to
include("global.php");
// ensures that the "back to songlist" link appears
$cdir = "blah";
// The HTML
echo "<HTML>\n<head>\n";
echo "<title>Brunhilde mp3 Miniserver</title>\n";
echo "</head>";
// imports the logo and standard links at the top of the page
include("header.php");
echo "
<BR><BR>
<TABLE border=0 width=100% $BORDER cellpadding=1 cellspacing=1>
<TBODY>
<TR>
<TD width=100%>
<TABLE width=100% border=0 cellpadding=0 cellspacing=0>
<TR align=center $TITLE>
<TD>
<font size=4><B>Security Error</B></font>
</TD>
</TR>
<TR align=center>
<TD width=100% $BODY>
<BR><BR>
<font size=3>
You have entered an invalide filepath. If this message was recieved in error, try again, and then contact the server administrator.
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
</font>
</TD>
</TR>
<TBODY>
</TABLE>
</TD>
</TR>
</TBODY>
</TABLE>
<BR>
";
// displays the footer at the bottom
include("footer.php");
echo "</body></html>";
exit;
?>