在线图书馆管理系统

此项目是在线图书馆管理系统。这个管理系统分为学生和管理员两个模块。从下面两点去运行这个项目:1.在本地系统副本库上下载文件并解压缩。2.将文件夹放在根目录中。作者只展示了一小段代码,如想了解更加详细请下载附件。

应用介绍

此项目是在线图书馆管理系统。这个管理系统分为学生和管理员两个模块。管理员功能有管理员控制台、管理员可以添加/更新/删除类别、管理员可以添加/更新/删除作者、管理员可以添加/更新/删除图书、管理员可以向学生发行一本新书,并在学生归还书时更新详细信息、管理员可以使用学生证搜索学生、管理员还可以查看学生详细信息、管理员可以更改自己的密码。学生们控制台由学生可以自己注册,注册后将获得学生证、登录后,学生可以查看自己的仪表板、学生可以更新自己的个人资料、学生可以查看已发行的书和返回书的日期时间、学生还可以更改自己的密码、学生还可以恢复自己的密码。从下面两点去运行这个项目:1.在本地系统副本库上下载文件并解压缩。2.将文件夹放在根目录中。作者只展示了一小段代码,如想了解更加详细请下载附件。

<?php
session_start();
error_reporting(0);
include('includes/config.php');
if($_SESSION['login']!=''){
$_SESSION['login']='';
}
if(isset($_POST['login']))
{
  //code for captach verification
if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='')  {
        echo "<script>alert('Incorrect verification code');</script>" ;
    } 
        else {
$email=$_POST['emailid'];
$password=md5($_POST['password']);
$sql ="SELECT EmailId,Password,StudentId,Status FROM tblstudents WHERE EmailId=:email and Password=:password";
$query= $dbh -> prepare($sql);
$query-> bindParam(':email', $email, PDO::PARAM_STR);
$query-> bindParam(':password', $password, PDO::PARAM_STR);
$query-> execute();
$results=$query->fetchAll(PDO::FETCH_OBJ);
if($query->rowCount() > 0)
{
 foreach ($results as $result) {
 $_SESSION['stdid']=$result->StudentId;
if($result->Status==1)
{
$_SESSION['login']=$_POST['emailid'];
echo "<script type='text/javascript'> document.location ='dashboard.php'; </script>";
} else {
echo "<script>alert('Your Account Has been blocked .Please contact admin');</script>";
}
}
} 
else{
echo "<script>alert('Invalid Details');</script>";
}
}
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
    <meta name="description" content="" />
    <meta name="author" content="" />
    <title>Online Library Management System | </title>
    <!-- BOOTSTRAP CORE STYLE  -->
    <link href="assets/css/bootstrap.css" rel="stylesheet" />
    <!-- FONT AWESOME STYLE  -->
    <link href="assets/css/font-awesome.css" rel="stylesheet" />
    <!-- CUSTOM STYLE  -->
    <link href="assets/css/style.css" rel="stylesheet" />
    <!-- GOOGLE FONT -->
    <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
</head>
<body>
    <!------MENU SECTION START-->
<?php include('includes/header.php');?>
<!-- MENU SECTION END-->
<div class="content-wrapper">
<div class="container">
<div class="row pad-botm">
<div class="col-md-12">
<h4 class="header-line">USER LOGIN FORM</h4>
</div>
</div>
             
<!--LOGIN PANEL START-->           
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3" >
<div class="panel panel-info">
<div class="panel-heading">
 LOGIN FORM
</div>
<div class="panel-body">
<form role="form" method="post">
<div class="form-group">
<label>Enter Email id</label>
<input class="form-control" type="text" name="emailid" required autocomplete="off" />
</div>
<div class="form-group">
<label>Password</label>
<input class="form-control" type="password" name="password" required autocomplete="off"  />
<p class="help-block"><a href="user-forgot-password.php">Forgot Password</a></p>
</div>
 <div class="form-group">
<label>Verification code : </label>
<input type="text" class="form-control1"  name="vercode" maxlength="5" autocomplete="off" required  style="height:25px;" />&nbsp;<img src="captcha.php">
</div> 
 <button type="submit" name="login" class="btn btn-info">LOGIN </button> | <a href="signup.php">Not Register Yet</a>
</form>
 </div>
</div>
</div>
</div>  
<!---LOGIN PABNEL END-->            
             
 
    </div>
    </div>
     <!-- CONTENT-WRAPPER SECTION END-->
 <?php include('includes/footer.php');?>
      <!-- FOOTER SECTION END-->
    <script src="assets/js/jquery-1.10.2.js"></script>
    <!-- BOOTSTRAP SCRIPTS  -->
    <script src="assets/js/bootstrap.js"></script>
      <!-- CUSTOM SCRIPTS  -->
    <script src="assets/js/custom.js"></script>
</body>
</html>

文件列表(部分)

名称 大小 修改日期
Online Library Management System0.00 KB2017-07-22
library0.00 KB2017-07-56
admin0.00 KB2017-07-54
add-author.php2.89 KB2017-07-00
add-book.php4.98 KB2017-07-46
add-category.php3.31 KB2017-07-42
assets0.00 KB2017-07-52
css0.00 KB2017-07-50
bootstrap.css129.44 KB2014-08-00
font-awesome.css24.63 KB2014-05-00
style.css4.52 KB2014-08-42
fonts0.00 KB2017-07-52
fontawesome-webfont862f.eot70.75 KB2014-05-00
fontawesome-webfont862f.svg247.55 KB2014-05-00
fontawesome-webfont862f.ttf138.25 KB2014-05-00
fontawesome-webfont862f.woff81.80 KB2014-05-00
fontawesome-webfontd41d.eot70.75 KB2014-05-00
glyphicons-halflings-regular.eot19.86 KB2014-08-00
glyphicons-halflings-regular.svg61.45 KB2014-08-00
glyphicons-halflings-regular.ttf40.31 KB2014-08-00
glyphicons-halflings-regular.woff22.77 KB2014-08-00
glyphicons-halflings-regulard41d.eot19.86 KB2014-08-00
img0.00 KB2017-07-52
1.jpg268.67 KB2017-07-12
2.jpg112.48 KB2017-07-52
3.jpg234.58 KB2017-07-48
logo.png3.29 KB2017-07-50
user.gif5.06 KB2014-08-18
user2.png9.90 KB2014-08-14
js0.00 KB2017-07-52
bootstrap.js59.26 KB2014-08-00
custom.js1.10 KB2014-08-10

立即下载

相关下载

[图书馆管理系统] 本图书管理系统基于java,数据库为mysql。前端使用了CS,js。 该系统实现读者和管理员登陆,图书的增删改查,读者的增删改查,借还图书,密码修改,卡号挂失,超期提醒等功能
[Java在线图书馆管理系统] 此项目是JSP,Java在线图书馆管理系统。Java的在线图书馆管理系统是用JSP开发的Web应用程序。下载在线图书馆管理系统的源代码。Java的在线图书馆管理系统提供免费的源代码。JSP的完整项目用于图书馆管理系统。
[在线图书馆管理系统] 此项目是在线图书馆管理系统。这个管理系统分为学生和管理员两个模块。从下面两点去运行这个项目:1.在本地系统副本库上下载文件并解压缩。2.将文件夹放在根目录中。作者只展示了一小段代码,如想了解更加详细请下载附件。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

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