-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview_desktop.php
More file actions
30 lines (27 loc) · 866 Bytes
/
Copy pathview_desktop.php
File metadata and controls
30 lines (27 loc) · 866 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
<!DOCTYPE html>
<html>
<?php
/**
* --------------------------------------------- *
* @author: Jerson A. Martínez M. (Side Master) *
* --------------------------------------------- *
*/
@session_start();
//session_destroy();
if (!isset($_SESSION['session']) || $_SESSION['session'] == "No"){
?>
<head>
<?php include ("source/php/head.php"); ?>
</head>
<body style="overflow: hidden;">
<?php
include ("source/php/content.php");
include ("source/php/foot_js.php");
?>
</body>
<?php
} else {
include ("private/desktop0/html/view_desktop.php");
}
?>
</html>