| .. | |||||
| tcpdf | |||||
| act.php | |||||
| db.php | |||||
| head.php | |||||
| header.php | |||||
| import_js.php | |||||
| index.html | |||||
| sidebar.php |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.108 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/dpmptsp/public_html/home/admin/part/ |
Upload File : |
<?php
date_default_timezone_set("Asia/Jakarta");
session_start();
if ((!isset($_SESSION['username']) || !isset($_SESSION['password'])|| !isset($_SESSION['levelakses'])) AND ($_GET['act']<>'login') ){
header('location:login.php');
}else{
include "part/db.php";
if (isset($_GET['act'])){
include "part/act.php";
}
//informasi user
$stmt = $conn->prepare("SELECT * FROM pengguna WHERE pnID='".$_SESSION['userid']."' and pnBolehAkses=1 limit 1");
$stmt->execute();
$user = $stmt->fetchAll();
$stmt->closeCursor();
$jumUsers = jumlahData('pengguna');
$jumArtikel = jumlahData('tbl_post');
$jumLog = jumlahData('tbl_log');
$q="FROM tbl_post where post_status=0";
$jumNotPublish=jumlahDataQuery($q);
$q="FROM tbl_post where post_status=1";
$jumPublish=jumlahDataQuery($q);
//informasi about
$stmt = $conn->prepare("SELECT * FROM about order by no");
$stmt->execute();
$about = $stmt->fetchAll();
$stmt->closeCursor();
}
?>
<head>
<!-- Basic -->
<meta charset="UTF-8">
<title>Dinas Penanaman Modal dan Pelayanan Terpadu Satu Pintu Kota Pekanbaru</title>
<meta name="keywords" content="Dinas Penanaman Modal dan Pelayanan Terpadu Satu Pintu Kota Pekanbaru, dpmptsp, pekanbaru, pelayanan terpadu, penanaman modal" />
<meta name="description" content="Dinas Penanaman Modal dan Pelayanan Terpadu Satu Pintu Kota Pekanbaru">
<meta name="author" content="Dinas Penanaman Modal dan Pelayanan Terpadu Satu Pintu Kota Pekanbaru">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- 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="assets/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="assets/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-datepicker/css/datepicker3.css" />
<!-- Specific Page Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/jquery-ui/css/ui-lightness/jquery-ui-1.10.4.custom.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-multiselect/bootstrap-multiselect.css" />
<link rel="stylesheet" href="assets/vendor/morris/morris.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-fileupload/bootstrap-fileupload.min.css" />
<link rel="stylesheet" href="assets/vendor/select2/select2.css" />
<link rel="stylesheet" href="assets/vendor/jquery-datatables-bs3/assets/css/datatables.css" />
<link rel="stylesheet" href="assets/vendor/summernote/summernote.css" />
<link rel="stylesheet" href="assets/vendor/summernote/summernote-bs3.css" />
<link rel="stylesheet" href="assets/vendor/codemirror/lib/codemirror.css" />
<link rel="stylesheet" href="assets/vendor/codemirror/theme/monokai.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="assets/stylesheets/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme-custom.css">
<!-- Head Libs -->
<script src="assets/vendor/modernizr/modernizr.js"></script>
<script>
(function(w,d,s,g,js,fs){
g=w.gapi||(w.gapi={});g.analytics={q:[],ready:function(f){this.q.push(f);}};
js=d.createElement(s);fs=d.getElementsByTagName(s)[0];
js.src='https://apis.google.com/js/platform.js';
fs.parentNode.insertBefore(js,fs);js.onload=function(){g.load('analytics');};
}(window,document,'script'));
</script>
</head>| .. | |||||
| tcpdf | |||||
| act.php | |||||
| db.php | |||||
| head.php | |||||
| header.php | |||||
| import_js.php | |||||
| index.html | |||||
| sidebar.php |