Beispiel #1
0
<?php

require_once "mainfile.php";
$PHP_SELF = "index.php";
GETMODULE($_GET[name], $_GET[file]);
//include ("db_config.php");
include "editor.php";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE><?php 
echo WEB_TITILE;
?>
</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo ISO;
?>
">

<meta name="keywords" content="<?php 
echo WEB_TITILE;
?>
">
<meta name="description" content="<?php 
echo WEB_TITILE;
?>
">
<link href="css/template_css.css" rel="stylesheet" type="text/css">
<link href="templates/<?php 
echo WEB_TEMPLATES;
Beispiel #2
0
<?php

error_reporting(0);
session_start();
include 'mainfile.php';
$PHP_SELF = "index.php";
$name = input('name', 'index');
$file = input('file', 'index');
GETMODULE($name, $file);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE><?php 
echo WEB_TITILE;
?>
</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo ISO;
?>
">

<meta name="keywords" content="<?php 
echo WEB_TITILE;
?>
">
<meta name="description" content="<?php 
echo WEB_TITILE;
?>
">
<link href="css/template_css.css" rel="stylesheet" type="text/css">
Beispiel #3
0
require_once "mainfile.php";
$PHP_SELF = "index.php";
if (!isset($_REQUEST['option'])) {
    $_REQUEST['option'] = "";
}
if (!isset($_GET['option'])) {
    $_GET['option'] = "";
}
if (!isset($_REQUEST['file'])) {
    $_REQUEST['file'] = "";
}
if (isset($_REQUEST['index'])) {
    $index = $_REQUEST['index'];
} else {
    $index = "";
}
GETMODULE($_REQUEST['option'], $_REQUEST['file']);
if ($_SESSION['user_os'] == 'mobile') {
    //require_once "index_mobile.php";
    require_once "index_desktop.php";
} else {
    require_once "index_desktop.php";
}
mysqli_close($connect);
?>
<noscript>
!Warning! Javascript must be enabled for proper operation of the Administrator
</noscript>
</body>
</html>
Beispiel #4
0
<?php

ob_start();
session_start();
$globals_test = @ini_get('register_globals');
if (isset($globals_test) && empty($globals_test)) {
    $types_to_register = array('GET', 'POST', 'COOKIE', 'SESSION', 'SERVER');
    foreach ($types_to_register as $type) {
        $arr = @${'_' . $type};
        if (@count($arr) > 0) {
            extract($arr, EXTR_SKIP);
        }
    }
}
require_once "mainfile.php";
$PHP_SELF = "print.php";
GETMODULE($_GET['name'], $_GET['file']);
//include ("db_config.php");
?>
<link href="css/template_css.css" rel="stylesheet" type="text/css">
<link href="templates/<?php 
echo WEB_TEMPLATES;
?>
/css/<?php 
echo WEB_TEMPLATES;
?>
.css" rel="stylesheet" type="text/css">

<?php 
include "" . $MODPATHFILE . "";