1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<? header('Content-Type: text/html; charset=UTF-8'); ini_set('display_errors', 0); error_reporting(E_ALL);
require_once("../conf_/siteconf_.php"); require_once("../admin/dbconn.php"); $content = "Serviciu temporar indisponibil. </br> Va rugam sa incercati mai tirziu. ";
if ((isset($_GET['pg'])) && (preg_match("/^[a-zA-Z0-9]+$/", $_GET['pg']) == 1)) $module = $_GET['pg']; else $module = "home";
ob_start(); require_once($module.".tpl.php" ); $content = ob_get_contents(); ob_end_clean(); ?> <?php include("header.tpl.php");?> <?php include("sidebar_left.tpl.php");?> <?php include("sidebar_middle.tpl.php");?> <?= $content; ?> <?php include("sidebar_right.tpl.php");?> <?php include("footer.tpl.php");?>
|