<? if(isset($_POST['op'])){
include("config.php");
include("inc/functions.php");
include("inc/secure.php");
$op = @preg_replace("/[^a-zA-Z0-9_-]/","",$_POST['op']);
$op = str_replace("/","",$op);
$op = str_replace(".","",$op);
if (is_file("mods/".$op.".php")){
include("mods/".$op.".php");
}else{
Echo ("<center><br />Module Could Not Be Found!<br /></center>");
}
}
?>