在线DJ预订管理系统

此项目是在线DJ预订管理系统。它有两个模块:管理模块和用户模块。管理员可以更新其个人资料,更改密码并恢复密码。用户可以查看网站并查看有关ODJMS服务的信息,还可以查询和预订DJ。讲解了如何运行在线DJ预订管理系统项目项目。本人只展示了一小段代码,在预览区展示了主页界面、DJ服务页面、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 }  ?>

文件列表(部分)

名称 大小 修改日期
online dj booking management system0.00 KB2020-02-20
odms0.00 KB2020-02-18
about.php4.06 KB2020-02-26
admin0.00 KB2020-02-18
aboutus.php5.64 KB2020-01-58
add-event-type.php4.78 KB2020-01-04
add-services.php5.86 KB2020-01-56
admin-profile.php7.09 KB2020-01-34
all-booking.php5.96 KB2020-01-44
approved-booking.php6.07 KB2020-01-50
assets0.00 KB2020-02-12
css0.00 KB2020-02-12
codebase.css387.58 KB2017-10-12
codebase.min.css304.36 KB2017-10-12
themes0.00 KB2020-02-12
corporate.min.css32.58 KB2017-10-12
earth.min.css32.55 KB2017-10-12
elegance.min.css32.58 KB2017-10-12
flat.min.css32.57 KB2017-10-12
pulse.min.css32.58 KB2017-10-12
fonts0.00 KB2020-02-12
fontawesome-webfont.eot161.86 KB2017-10-12
fontawesome-webfont.svg433.96 KB2017-10-12
fontawesome-webfont.ttf161.67 KB2017-10-12
fontawesome-webfont.woff95.73 KB2017-10-12
fontawesome-webfont.woff275.35 KB2017-10-12
FontAwesome.otf131.65 KB2017-10-12
Simple-Line-Icons.eot52.99 KB2017-10-12
Simple-Line-Icons.svg233.44 KB2017-10-12
Simple-Line-Icons.ttf52.79 KB2017-10-12
Simple-Line-Icons.woff79.43 KB2017-10-12
Simple-Line-Icons.woff229.36 KB2017-10-12

立即下载

相关下载

[在线DJ预订管理系统] 此项目是在线DJ预订管理系统。它有两个模块:管理模块和用户模块。管理员可以更新其个人资料,更改密码并恢复密码。用户可以查看网站并查看有关ODJMS服务的信息,还可以查询和预订DJ。讲解了如何运行在线DJ预订管理系统项目项目。本人只展示了一小段代码,在预览区展示了主页界面、DJ服务页面、DJ预订页面、管理员控制台页面;如想了解更多请下载附件。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部