forked from raiuli/Web-BRBES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logViewer.php
44 lines (38 loc) · 939 Bytes
/
logViewer.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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="5">
</head>
<!--
<body>
<form action="logViewer.php" method="post">
<input type="submit" name="on" value="clearLog">
</form>
This is a comment. Comments are not displayed in the browser-->
<?php
session_start();
echo(get_current_user());
echo('<br>');
echo time();
echo('<br>');
print_r($_SESSION['X9']) ;
echo('<br>');
echo('==============================================================================');
// echo('<br>');
// print_r($_SESSION['X9']) ;
// // var_dump($_SESSION['X9']) ;
// echo('<br>');
// // echo('$_POST[on]'+$_POST['on']);
// $_SESSION["debug_enable_for_me"]=true;
// echo($_SESSION['myLog']);
// if(isset($_POST['on'])) {
// onFunc();
// }
// function onFunc(){
// unset($_SESSION['myLog']);
// unset($_POST['on']);
// echo('$_POST[on]'+$_POST['on']);
// }
?>
</body>
</html>