在线图书馆管理系统
此项目是在线图书馆管理系统。这个管理系统分为学生和管理员两个模块。从下面两点去运行这个项目: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;" /> <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>
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 在线图书馆管理系统
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
Online Library Management System | 0.00 KB | 2017-07-22 |
library | 0.00 KB | 2017-07-56 |
admin | 0.00 KB | 2017-07-54 |
add-author.php | 2.89 KB | 2017-07-00 |
add-book.php | 4.98 KB | 2017-07-46 |
add-category.php | 3.31 KB | 2017-07-42 |
assets | 0.00 KB | 2017-07-52 |
css | 0.00 KB | 2017-07-50 |
bootstrap.css | 129.44 KB | 2014-08-00 |
font-awesome.css | 24.63 KB | 2014-05-00 |
style.css | 4.52 KB | 2014-08-42 |
fonts | 0.00 KB | 2017-07-52 |
fontawesome-webfont862f.eot | 70.75 KB | 2014-05-00 |
fontawesome-webfont862f.svg | 247.55 KB | 2014-05-00 |
fontawesome-webfont862f.ttf | 138.25 KB | 2014-05-00 |
fontawesome-webfont862f.woff | 81.80 KB | 2014-05-00 |
fontawesome-webfontd41d.eot | 70.75 KB | 2014-05-00 |
glyphicons-halflings-regular.eot | 19.86 KB | 2014-08-00 |
glyphicons-halflings-regular.svg | 61.45 KB | 2014-08-00 |
glyphicons-halflings-regular.ttf | 40.31 KB | 2014-08-00 |
glyphicons-halflings-regular.woff | 22.77 KB | 2014-08-00 |
glyphicons-halflings-regulard41d.eot | 19.86 KB | 2014-08-00 |
img | 0.00 KB | 2017-07-52 |
1.jpg | 268.67 KB | 2017-07-12 |
2.jpg | 112.48 KB | 2017-07-52 |
3.jpg | 234.58 KB | 2017-07-48 |
logo.png | 3.29 KB | 2017-07-50 |
user.gif | 5.06 KB | 2014-08-18 |
user2.png | 9.90 KB | 2014-08-14 |
js | 0.00 KB | 2017-07-52 |
bootstrap.js | 59.26 KB | 2014-08-00 |
custom.js | 1.10 KB | 2014-08-10 |
发表评论 取消回复