美容院管理系统

此项目是使用PHP和MySQL的美容院管理系统。在这个项目中,我们使用PHP和Mysql数据库。 它有两个模块admin和user。管理员中有仪表板部分、服务部分、页面部分、约会部分、添加客户部分、客户清单部分、报告部分、发票部分、搜索约会部分、搜索发票部分;管理员还可以更新其个人资料,更改密码和恢复密码。用户在BPMS中,用户无需登录。本人只展示了一小段代码,在预览区也展示了主页界面、管理员控制台界面、客户名单界面、客户发票界面;想了解更详情请下附件。

预览截图

应用介绍

此项目是使用PHP和MySQL的美容院管理系统。在这个项目中,我们使用PHP和Mysql数据库。 它有两个模块admin和user。管理员中有仪表板部分、服务部分、页面部分、约会部分、添加客户部分、客户清单部分、报告部分、发票部分、搜索约会部分、搜索发票部分;管理员还可以更新其个人资料,更改密码和恢复密码。用户在BPMS中,用户无需登录。按照下面几点运行美容美发管理系统(BPMS)项目:1.下载压缩文件。2.解压缩文件并复制bpms文件夹。3.在根目录下粘贴(用于xampp xampp / htdocs,用于wamp wamp / www,用于灯var / www / html)。4.打开PHPMyAdmin(http:// localhost / phpmyadmin)。5.创建一个名称为bpmsdb的数据库。6.导入bpmsdb.sql文件(在SQL文件夹的zip包中提供)。7.运行脚本http:// localhost / bpms(前端)。本人只展示了一小段代码,在预览区也展示了主页界面、管理员控制台界面、客户名单界面、客户发票界面;想了解更详情请下附件。

<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['bpmsaid']==0)) {
  header('location:logout.php');
  } else{
if(isset($_POST['submit']))
  {
    $sername=$_POST['sername'];
    $cost=$_POST['cost'];
   
     
    $query=mysqli_query($con, "insert into  tblservices(ServiceName,Cost) value('$sername','$cost')");
    if ($query) {
     echo "<script>alert('Service has been added.');</script>"; 
      echo "<script>window.location.href = 'add-services.php'</script>";   
    $msg="";
  }
  else
    {
    echo "<script>alert('Something Went Wrong. Please try again.');</script>";   
    }
  
}
  ?>
<!DOCTYPE HTML>
<html>
<head>
<title>BPMS | Add Services</title>
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- Custom CSS -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<!-- font CSS -->
<!-- font-awesome icons -->
<link href="css/font-awesome.css" rel="stylesheet"> 
<!-- //font-awesome icons -->
 <!-- js-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/modernizr.custom.js"></script>
<!--webfonts-->
<link href='//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,300italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
<!--//webfonts--> 
<!--animate-->
<link href="css/animate.css" rel="stylesheet" type="text/css" media="all">
<script src="js/wow.min.js"></script>
 <script>
   new WOW().init();
 </script>
<!--//end-animate-->
<!-- Metis Menu -->
<script src="js/metisMenu.min.js"></script>
<script src="js/custom.js"></script>
<link href="css/custom.css" rel="stylesheet">
<!--//Metis Menu -->
</head> 
<body class="cbp-spmenu-push">
 <div class="main-content">
  <!--left-fixed -navigation-->
   <?php include_once('includes/sidebar.php');?>
  <!--left-fixed -navigation-->
  <!-- header-starts -->
  <?php include_once('includes/header.php');?>
  <!-- //header-ends -->
  <!-- main content start-->
  <div id="page-wrapper">
   <div class="main-page">
    <div class="forms">
     <h3 class="title1">Add Services</h3>
     <div class="form-grids row widget-shadow" data-example-id="basic-forms"> 
      <div class="form-title">
       <h4>Parlour Services:</h4>
      </div>
      <div class="form-body">
       <form method="post">
        <p style="font-size:16px; color:red" align="center"> <?php if($msg){
    echo $msg;
  }  ?> </p>
  
        <div class="form-group"> <label for="exampleInputEmail1">Service Name</label> <input type="text" class="form-control" id="sername" name="sername" placeholder="Service Name" value="" required="true"> </div> <div class="form-group"> <label for="exampleInputPassword1">Cost</label> <input type="text" id="cost" name="cost" class="form-control" placeholder="Cost" value="" required="true"> </div>
       
         <button type="submit" name="submit" class="btn btn-default">Add</button> </form> 
      </div>
      
     </div>
    
    
   </div>
  </div>
   <?php include_once('includes/footer.php');?>
 </div>
 <!-- Classie -->
  <script src="js/classie.js"></script>
  <script>
   var menuLeft = document.getElementById( 'cbp-spmenu-s1' ),
    showLeftPush = document.getElementById( 'showLeftPush' ),
    body = document.body;
    
   showLeftPush.onclick = function() {
    classie.toggle( this, 'active' );
    classie.toggle( body, 'cbp-spmenu-push-toright' );
    classie.toggle( menuLeft, 'cbp-spmenu-open' );
    disableOther( 'showLeftPush' );
   };
   
   function disableOther( button ) {
    if( button !== 'showLeftPush' ) {
     classie.toggle( showLeftPush, 'disabled' );
    }
   }
  </script>
 <!--scrolling js-->
 <script src="js/jquery.nicescroll.js"></script>
 <script src="js/scripts.js"></script>
 <!--//scrolling js-->
 <!-- Bootstrap Core JavaScript -->
   <script src="js/bootstrap.js"> </script>
</body>
</html>
<?php } ?>

文件列表(部分)

名称 大小 修改日期
Beauty Parlour Management System0.00 KB2019-08-02
bpms0.00 KB2019-08-40
about.php4.05 KB2019-08-12
admin0.00 KB2019-08-40
about-us.php4.33 KB2019-07-30
accepted-appointment.php3.65 KB2019-07-20
add-customer-services.php4.07 KB2019-07-36
add-customer.php5.45 KB2019-08-56
add-services.php4.08 KB2019-08-12
admin-profile.php4.62 KB2019-07-04
all-appointment.php3.62 KB2019-07-26
bwdates-reports-details.php4.00 KB2019-08-52
bwdates-reports-ds.php3.68 KB2019-07-02
change-password.php4.79 KB2019-07-50
contact-us.php5.08 KB2019-07-18
css0.00 KB2019-08-40
animate.css1.65 KB2015-12-06
bootstrap.css138.28 KB2015-12-46
clndr.css9.84 KB2015-12-06
custom.css1.71 KB2015-12-32
font-awesome.css21.66 KB2015-12-26
jqvmap.css1.11 KB2015-12-08
style.css75.87 KB2016-05-02
customer-list.php3.57 KB2019-07-00
dash-index.php7.96 KB2019-07-32
dashboard.php7.99 KB2019-08-56
edit-appointment.php5.12 KB2019-07-20
edit-customer-detailed.php5.98 KB2019-07-20
edit-services.php4.21 KB2019-08-46
fonts0.00 KB2019-08-40
fontawesome-webfont.eot37.31 KB2015-12-02
fontawesome-webfont.svg197.41 KB2015-12-02

立即下载

相关下载

[美容院管理系统] 此项目是使用PHP和MySQL的美容院管理系统。在这个项目中,我们使用PHP和Mysql数据库。 它有两个模块admin和user。管理员中有仪表板部分、服务部分、页面部分、约会部分、添加客户部分、客户清单部分、报告部分、发票部分、搜索约会部分、搜索发票部分;管理员还可以更新其个人资料,更改密码和恢复密码。用户在BPMS中,用户无需登录。本人只展示了一小段代码,在预览区也展示了主页界面、管理员控制台界面、客户名单界面、客户发票界面;想了解更详情请下附件。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

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