在线DJ预订管理系统
预览截图
应用介绍
此项目是在线DJ预订管理系统。它有两个模块:管理模块和用户模块。管理模块包括,仪表板:在此部分中,管理员可以简短地查看所有详细信息,例如总服务,未读总查询,已读总查询,新预订总计,已批准预订总计,已取消预订总计和事件类型总计。DJ服务:在此部分中,管理员可以管理服务(添加/删除)。事件类型:在此部分中,管理员可以管理事件类型(添加/删除)。页面:在此部分中,管理员可以管理关于我们并与我们联系的页面。预订:在此部分中,管理员可以查看新的,已批准的,已取消的预订,并提供备注。与我们联系查询:在此部分中,管理员可以查看和维护查询。报告:在此部分中,管理员可以查看特定时期的预订。搜索:在此部分中,管理员可以借助姓名,手机号码和预订ID来搜索预订详细信息和用户查询。管理员还可以更新其个人资料,更改密码并恢复密码。用户可以查看网站并查看有关ODJMS服务的信息,还可以查询和预订DJ。按照下面几点操作运行在线DJ预订管理系统项目:1.下载压缩文件。2.解压文件并复制odms文件夹。3.在根目录下粘贴(用于xampp xampp / htdocs,用于wamp wamp / www,用于灯var / www / html)。4.打开PHPMyAdmin(http:// localhost / phpmyadmin)。5.创建一个名为odmsdb的数据库。6.导入odmsdb.sql文件(在SQL文件夹的zip包中提供)。7.运行脚本http:// localhost / odms。本人只展示了一小段代码,在预览区展示了主页界面、DJ服务页面、DJ预订页面、管理员控制台页面;如想了解更多请下载附件。
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['odmsaid']==0)) {
header('location:logout.php');
} else{
?>
<!doctype html>
<html lang="en" class="no-focus"> <!--<![endif]-->
<head>
<title>Online DJ Management System - Total Booking</title>
<link rel="stylesheet" href="assets/js/plugins/datatables/dataTables.bootstrap4.min.css">
<link rel="stylesheet" id="css-main" href="assets/css/codebase.min.css">
</head>
<body>
<div id="page-container" class="sidebar-o sidebar-inverse side-scroll page-header-fixed main-content-narrow">
<?php include_once('includes/sidebar.php');?>
<?php include_once('includes/header.php');?>
<!-- Main Container -->
<main id="main-container">
<!-- Page Content -->
<div class="content">
<h2 class="content-heading">Total Booking</h2>
<!-- Dynamic Table Full Pagination -->
<div class="block">
<div class="block-header block-header-default">
<h3 class="block-title">Total Booking</h3>
</div>
<div class="block-content block-content-full">
<!-- DataTables init on table by adding .js-dataTable-full-pagination class, functionality initialized in js/pages/be_tables_datatables.js -->
<table class="table table-bordered table-striped table-vcenter js-dataTable-full-pagination">
<thead>
<tr>
<th class="text-center"></th>
<th>Booking ID</th>
<th class="d-none d-sm-table-cell">Cutomer Name</th>
<th class="d-none d-sm-table-cell">Mobile Number</th>
<th class="d-none d-sm-table-cell">Email</th>
<th class="d-none d-sm-table-cell">Booking Date</th>
<th class="d-none d-sm-table-cell">Status</th>
<th class="d-none d-sm-table-cell" style="width: 15%;">Action</th>
</tr>
</thead>
<tbody>
<?php
$sql="SELECT * from tblbooking";
$query = $dbh -> prepare($sql);
$query->execute();
$results=$query->fetchAll(PDO::FETCH_OBJ);
$cnt=1;
if($query->rowCount() > 0)
{
foreach($results as $row)
{ ?>
<tr>
<td class="text-center"><?php echo htmlentities($cnt);?></td>
<td class="font-w600"><?php echo htmlentities($row->BookingID);?></td>
<td class="font-w600"><?php echo htmlentities($row->Name);?></td>
<td class="font-w600"><?php echo htmlentities($row->MobileNumber);?></td>
<td class="font-w600"><?php echo htmlentities($row->Email);?></td>
<td class="font-w600">
<span class="badge badge-primary"><?php echo htmlentities($row->BookingDate);?></span>
</td>
<?php if($row->Status==""){ ?>
<td class="font-w600"><?php echo "Not Updated Yet"; ?></td>
<?php } else { ?>
<td class="d-none d-sm-table-cell">
<span class="badge badge-primary"><?php echo htmlentities($row->Status);?></span>
</td>
<?php } ?>
<td class="d-none d-sm-table-cell"><a href="view-booking-detail.php?editid=<?php echo htmlentities ($row->ID);?>&&bookingid=<?php echo htmlentities ($row->BookingID);?>"><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
<?php $cnt=$cnt+1;}} ?>
</tbody>
</table>
</div>
</div>
<!-- END Dynamic Table Full Pagination -->
<!-- END Dynamic Table Simple -->
</div>
<!-- END Page Content -->
</main>
<!-- END Main Container -->
<?php include_once('includes/footer.php');?>
</div>
<!-- END Page Container -->
<!-- Codebase Core JS -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap.min.js"></script>
<script src="assets/js/core/jquery.slimscroll.min.js"></script>
<script src="assets/js/core/jquery.scrollLock.min.js"></script>
<script src="assets/js/core/jquery.appear.min.js"></script>
<script src="assets/js/core/jquery.countTo.min.js"></script>
<script src="assets/js/core/js.cookie.min.js"></script>
<script src="assets/js/codebase.js"></script>
<!-- Page JS Plugins -->
<script src="assets/js/plugins/datatables/jquery.dataTables.min.js"></script>
<script src="assets/js/plugins/datatables/dataTables.bootstrap4.min.js"></script>
<!-- Page JS Code -->
<script src="assets/js/pages/be_tables_datatables.js"></script>
</body>
</html>
<?php } ?>
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: [email protected] 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 在线DJ预订管理系统
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
online dj booking management system | 0.00 KB | 2020-02-20 |
odms | 0.00 KB | 2020-02-18 |
about.php | 4.06 KB | 2020-02-26 |
admin | 0.00 KB | 2020-02-18 |
aboutus.php | 5.64 KB | 2020-01-58 |
add-event-type.php | 4.78 KB | 2020-01-04 |
add-services.php | 5.86 KB | 2020-01-56 |
admin-profile.php | 7.09 KB | 2020-01-34 |
all-booking.php | 5.96 KB | 2020-01-44 |
approved-booking.php | 6.07 KB | 2020-01-50 |
assets | 0.00 KB | 2020-02-12 |
css | 0.00 KB | 2020-02-12 |
codebase.css | 387.58 KB | 2017-10-12 |
codebase.min.css | 304.36 KB | 2017-10-12 |
themes | 0.00 KB | 2020-02-12 |
corporate.min.css | 32.58 KB | 2017-10-12 |
earth.min.css | 32.55 KB | 2017-10-12 |
elegance.min.css | 32.58 KB | 2017-10-12 |
flat.min.css | 32.57 KB | 2017-10-12 |
pulse.min.css | 32.58 KB | 2017-10-12 |
fonts | 0.00 KB | 2020-02-12 |
fontawesome-webfont.eot | 161.86 KB | 2017-10-12 |
fontawesome-webfont.svg | 433.96 KB | 2017-10-12 |
fontawesome-webfont.ttf | 161.67 KB | 2017-10-12 |
fontawesome-webfont.woff | 95.73 KB | 2017-10-12 |
fontawesome-webfont.woff2 | 75.35 KB | 2017-10-12 |
FontAwesome.otf | 131.65 KB | 2017-10-12 |
Simple-Line-Icons.eot | 52.99 KB | 2017-10-12 |
Simple-Line-Icons.svg | 233.44 KB | 2017-10-12 |
Simple-Line-Icons.ttf | 52.79 KB | 2017-10-12 |
Simple-Line-Icons.woff | 79.43 KB | 2017-10-12 |
Simple-Line-Icons.woff2 | 29.36 KB | 2017-10-12 |
发表评论 取消回复