-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (26 loc) · 1.1 KB
/
index.php
File metadata and controls
28 lines (26 loc) · 1.1 KB
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
26
27
28
<?php
// trimite tipul MIME si codarea caracterelor
header("Content-Type: text/html; charset=utf-8");
//------------------------------------------------------------------------------------------------------------------------ //
define('ANTIHACK', TRUE);
require_once('config/_autoload.php');
define("page", ((isset($_GET["page"])) ? (string)$_GET["page"] : "index"));
//------------------------------------------------------------------------------------------------------------------------ //
//
//
//
// system includes ------------------------------------------------------------------------------------------------------- //
include_once('libs/SQL_DB.php');
include_once('libs/Validator.php');
include_once('libs/Form_data.php');
include_once('libs/pagination.php');
include_once('libs/email.php');
include_once('libs/SpecialCharacters.php');
include_once('libs/Datatime.php');
// design
include_once('design/layout.php');
//------------------------------------------------------------------------------------------------------------------------ //
// END index site
/* End of file index.php */
/* Location: ./index.php */
?>