PHP开发简单图书借阅系统之主页还书功能
如图
当您已经借过书后,在主页面的操作栏下有个操作目录显示“您已借阅 我要还书”
点击“我要还书”实现还书功能。
还书后 主页面书本的“现有数量”加一。
首先还是要判断用户是否登录。
<?php if ($_SESSION['id']==""){ echo "<script language=javascript>alert('您还没有登陆');window.location='landing.php'</script>"; exit(); } ?>
通过SQL语句显示还书,还书成功则在借书表中删除该书借书记录,在主页展示表中书本数量加一。
<?php $book_id=$_GET["book_id"]; //构建sql语句还书 //在lend表中删除该借书记录 $returnsql="DELETE FROM lend where book_id='$book_id' and user_id=".$_SESSION['id']; mysqli_query($link,$returnsql) or die ("删除借书记录失败:".mysqli_errno($link)); //在book表中增加一本现存书数量 $booksql="UPDATE yx_books SET leave_number=leave_number+1 where id='$book_id'"; mysqli_query($link,$booksql) or die ("增加剩余书数量失败:".mysqli_error($link)); echo "<script language=javascript>alert('还书成功');window.location='index.php'</script>"; ?>