停车管理系统
此项目是使用PHP和MySQL的停车管理系统。按照下面的步骤操作运行停车管理系统项目:按照下面的步骤操作运行停车管理系统项目:1.下载压缩文件。2.解压缩文件并复制vpms文件夹。3.粘贴到根目录中。4.打开PHPMyAdmin。5.创建一个名称为vpmsdb的数据库。6.导入vpmsdb.sql文件。7.运行脚本http:// localhost / vpms。本人只展示了一小段代码,在预览区也展示了登录页面、管理员控制台界面;想了解更多请下载附件。
预览截图
应用介绍
此项目是使用PHP和MySQL的停车管理系统。按照下面的步骤操作运行停车管理系统项目:1.下载压缩文件。2.解压缩文件并复制vpms文件夹。3.粘贴到根目录中(对于xampp xampp / htdocs,wamp wamp / www,lamp var / www / HTML)。4.打开PHPMyAdmin(http:// localhost / phpmyadmin)。5.创建一个名称为vpmsdb的数据库。6.导入vpmsdb.sql文件(在sql文件文件夹中的zip包中提供)。7.运行脚本http:// localhost / vpms(前端)。本人只展示了一小段代码,在预览区也展示了登录页面、管理员控制台界面;想了解更多请下载附件。
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['vpmsaid']==0)) {
header('location:logout.php');
} else{
?>
<!doctype html>
<html class="no-js" lang="">
<head>
<title>VPMS - Reports</title>
<link rel="apple-touch-icon" href="https://i.imgur.com/QRAUqs9.png">
<link rel="shortcut icon" href="https://i.imgur.com/QRAUqs9.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lykmapipo/themify-icons@0.1.2/css/themify-icons.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pixeden-stroke-7-icon@1.2.3/pe-icon-7-stroke/dist/pe-icon-7-stroke.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.2.0/css/flag-icon.min.css">
<link rel="stylesheet" href="assets/css/cs-skin-elastic.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Left Panel -->
<?php include_once('includes/sidebar.php');?>
<!-- Left Panel -->
<!-- Right Panel -->
<?php include_once('includes/header.php');?>
<div class="breadcrumbs">
<div class="breadcrumbs-inner">
<div class="row m-0">
<div class="col-sm-4">
<div class="page-header float-left">
<div class="page-title">
<h1>Dashboard</h1>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="page-header float-right">
<div class="page-title">
<ol class="breadcrumb text-right">
<li><a href="dashboard.php">Dashboard</a></li>
<li><a href="bwdates-report-ds.php">Between Date Reports</a></li>
<li class="active">Between Date Reports</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-header">
<strong class="card-title">Between Date Reports</strong>
</div>
<div class="card-body">
<?php
$fdate=$_POST['fromdate'];
$tdate=$_POST['todate'];
?>
<h5 align="center" style="color:blue">Report from <?php echo $fdate?> to <?php echo $tdate?></h5>
<table class="table">
<thead>
<tr>
<tr>
<th>S.NO</th>
<th>Parking Number</th>
<th>Owner Name</th>
<th>Vehicle Reg Number</th>
<th>Action</th>
</tr>
</tr>
</thead>
<?php
$ret=mysqli_query($con,"select *from tblvehicle where date(InTime) between '$fdate' and '$tdate'");
$cnt=1;
while ($row=mysqli_fetch_array($ret)) {
?>
<tr>
<td><?php echo $cnt;?></td>
<td><?php echo $row['ParkingNumber'];?></td>
<td><?php echo $row['OwnerName'];?></td>
<td><?php echo $row['RegistrationNumber'];?></td>
<td><a href="view-incomingvehicle-detail.php?viewid=<?php echo $row['ID'];?>">View</a></td>
</tr>
<?php
$cnt=$cnt+1;
}?>
</table>
</div>
</div>
</div>
</div>
</div><!-- .animated -->
</div><!-- .content -->
<div class="clearfix"></div>
<?php include_once('includes/footer.php');?>
</div><!-- /#right-panel -->
<!-- Right Panel -->
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.4/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery-match-height@0.7.2/dist/jquery.matchHeight.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>
<?php } ?>
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 停车管理系统
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
Vehicle parking management System project | 0.00 KB | 2019-07-02 |
Readme.txt | 0.47 KB | 2019-07-10 |
SQL File | 0.00 KB | 2019-07-46 |
vpmsdb.sql | 4.92 KB | 2019-07-38 |
vpms | 0.00 KB | 2019-07-32 |
add-category.php | 5.63 KB | 2019-07-04 |
add-vehicle.php | 8.54 KB | 2019-07-38 |
admin-profile.php | 7.11 KB | 2019-07-48 |
assets | 0.00 KB | 2019-07-26 |
css | 0.00 KB | 2019-07-26 |
cs-skin-elastic.css | 6.97 KB | 2018-10-24 |
lib | 0.00 KB | 2019-07-26 |
chosen | 0.00 KB | 2019-07-26 |
chosen-sprite.png | 0.53 KB | 2018-10-24 |
chosen-sprite@2x.png | 0.72 KB | 2018-10-24 |
chosen.css | 11.70 KB | 2018-10-24 |
chosen.min.css | 9.82 KB | 2018-10-24 |
datatable | 0.00 KB | 2019-07-26 |
buttons.bootstrap.min.css | 7.89 KB | 2018-10-24 |
buttons.dataTables.min.css | 7.89 KB | 2018-10-24 |
dataTables.bootstrap.min.css | 4.92 KB | 2018-10-24 |
vector-map | 0.00 KB | 2019-07-26 |
jqvmap.min.css | 0.79 KB | 2018-10-24 |
style.css | 61.28 KB | 2018-10-24 |
style.css.map | 37.15 KB | 2018-10-24 |
fonts | 0.00 KB | 2019-07-26 |
icomoon | 0.00 KB | 2019-07-26 |
icomoon.eot | 4.92 KB | 2018-10-24 |
icomoon.svg | 9.30 KB | 2018-10-24 |
icomoon.ttf | 4.76 KB | 2018-10-24 |
icomoon.woff | 3.41 KB | 2018-10-24 |
index.html | 0.00 KB | 2018-10-24 |
发表评论 取消回复