-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.php
35 lines (13 loc) · 879 Bytes
/
variable.php
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
<?php
/* ---------------------------------------------------------------------------------------------------------------- INIT */
include("lib/app/website/app.php");
/* ---------------------------------------------------------------------------------------------------------------- CONFIG */
$_HTML["page"] = "variable";
$_HTML["title"] = "Contenu de la variable \$_HTML — ".$_HTML["title"];
/* ---------------------------------------------------------------------------------------------------------------- CONTENU : PAGE */
$_HTML["data"]["content"] .= "
<h1>Contenu de la variable \$_HTML</h1>
<div class='space30'></div>
".functions::print_r( $_HTML , true );
/* ---------------------------------------------------------------------------------------------------------------- DISPLAY */
$_HTML["display"] = true;