-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathnull.php
More file actions
36 lines (35 loc) · 821 Bytes
/
null.php
File metadata and controls
36 lines (35 loc) · 821 Bytes
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
29
30
31
32
33
34
35
36
<?php
session_start();
error_reporting(E_ALL);
ini_set("display_errors", 1);
require_once("includes/setdefaultpage.php");
userlanguage();
require("language/".$_SESSION['language']."/null.php");
$header=explode(":",DEFAULTHEADER);
defaultheader($header[0],$header[1],$header[2],$header[3]);
?>
<body>
<?php defaulttop(); ?>
<header class="w3-container w3-teal">
<h1><?php echo WELCOME;?></h1>
</header>
<div class="w3-center">
<div class="w3-row"><br/>
<article class="w3-col m10 w3-container">
<h1><?php echo TITLE1;?></h1>
<p><?php echo TEXT1;?></p>
<br/>
</article>
<aside>
<nav class="w3-col m2 w3-light-grey">
<?php defaultmenuright();?>
</nav>
</aside>
</div>
</div>
<footer class="w3-container w3-small w3-teal">
<p><?php echo FOOTER;?></p>
</footer>
<?php
defaultfooter();
?>