mirror of
https://github.com/jakejarvis/jbb.git
synced 2025-04-26 06:45:22 -04:00
22 lines
333 B
PHP
Executable File
22 lines
333 B
PHP
Executable File
<HTML>
|
|
<HEAD>
|
|
<BASE TARGET="main">
|
|
|
|
<STYLE TYPE="text/css">
|
|
a:link {font-family:Verdana; font-color:navyblue;}
|
|
</STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<FONT FACE="Verdana" SIZE="-1">
|
|
<?php
|
|
$act = $act . ".php";
|
|
|
|
if ( $act == "" || !file_exists($act) ) {
|
|
$act = "main.php";
|
|
}
|
|
include("$act");
|
|
?>
|
|
</FONT>
|
|
</BODY>
|
|
</HTML>
|