Home Forums Download Support Last Updated: Sat, 21 Jun 2003 19:18:32 GMT
 

View the mymud.inc Here
View the site.inc Here

<?php
    
require('include/mymud.inc');
    
$file $_REQUEST['file'];
    if(
$file)
    {
        
printheader("File Source of " $file);    
    }
    else
    {
        
printheader("File is required");
    }
    
    
opentable(0,0,0,"center","middle",700);

    
openrow("","","","*",10,0,0);
    
opencol("","","left","*","*",0,0);
    
printspace(1);
    
closecol();
    
closerow();
    
    
openrow("","","","*","*",0,0);
    
opencol("","","left","*","*",0,0);
    
    echo 
"<p>";
    
printfont("blue",2,"View the mymud.inc ");
    
printlink("source.php?file=/include/mymud.inc","Here");
    echo 
"<br>";
    
printfont("blue",2,"View the site.inc ");
    
printlink("source.php?file=/include/site.inc","Here");
    echo 
"</p>";
    
    if(
$file)
    {    
        
printsource($file);
    }
    else
    {
        
printfont("red",4,"ERROR: File is required!");
    }
        
    
closecol();
    
closerow();
    
    
openrow("","","","*",10,0,0);
    
opencol("","","left","*","*",0,0);
    
printspace(1);
    
closecol();
    
closerow();
    
    
closetable();
    
    
printfooter($_SERVER['PHP_SELF']);
?>
 
This webpage and it's content is released under the GNU General Public License.