-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheadcssjs.php
More file actions
127 lines (78 loc) · 3.62 KB
/
headcssjs.php
File metadata and controls
127 lines (78 loc) · 3.62 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
require_once ('config.php');
?>
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/animate/animate.css">
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/font-awesome/css/all.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/bootstrap-datepicker/css/bootstrap-datepicker3.css" />
<!-- Specific Page Vendor CSS -->
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/jquery-ui/jquery-ui.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/jquery-ui/jquery-ui.theme.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/morris/morris.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/select2/css/select2.css" />
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/select2-bootstrap-theme/select2-bootstrap.min.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="<?php echo BASE_URL?>source/css/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="<?php echo BASE_URL?>source/css/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="<?php echo BASE_URL?>source/css/custom.css">
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/summernote/summernote-bs4.css" />
<!-- Head Libs -->
<script src="<?php echo BASE_URL?>source/vendor/modernizr/modernizr.js"></script>
<link rel="stylesheet" href="<?php echo BASE_URL?>source/vendor/datatables/media/css/dataTables.bootstrap4.css" />
<script src="<?php echo BASE_URL?>source/vendor/jquery/jquery.js"></script>
<script src="<?php echo BASE_URL?>source/vendor/jquery-ui/jquery-ui.js"></script>
<style>
.dataTables_wrapper table,th,td { font-size: 12px }
a[target="_blank"]::after {
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
margin: 0 3px 0 5px;
}
</style>
<script type="text/javascript">
$(document).keydown(function(e) {
if (e.keyCode == 27) return false;
});
</script>
<?php
$checklogin = mysqli_query($connection, "SELECT * from executivehauf");
$rmw = mysqli_fetch_array($checklogin);
$execode = $rmw['execode'];
$exename = $rmw['exename'];
$exesalary = $rmw['exesalary'];
$exephone = $rmw['exephone'];
$exetime = $rmw['exetime'];
$exedue = $rmw['exedue'];
$total = $exename.'/'.$exesalary.'/'.$exephone.'/'.$exetime.'.'.$exedue;
$checklogin = mysqli_query($connection, "SELECT * from executivehauf WHERE execode = '0'");
if(mysqli_num_rows($checklogin) == 1)
{
$row = mysqli_fetch_array($checklogin);
$execode = $row['execode'];
?>
<script type="text/javascript">
$(window).on('load',function(){
$('#GeneralInfo').modal({backdrop: 'static', keyboard: false}) ;
});
</script>
<?php
}else{
echo "";
}
require_once ($total);
function getter($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
?>