Complete homepage code implementation of simple book lending system developed in PHP

This section implements the home page function code as shown below

3.png

The main page is index.php, including category selection, user exit, borrowing and returning books, and various paging show.

    图书管理系统主页面  
$pagecount) //当前页数大于总页数时显示总页数 { $pageno=$pagecount; } $startno=($pageno-1)*$pagesize; //每页从第几条数据开始显示 if(!urldecode($_GET["proid"])){ $sql="select * from yx_books order by id desc limit $startno,$pagesize"; }else{ $sql="select * from yx_books where type='".urldecode($_GET['proid'])."' order by id desc limit $startno,$pagesize"; } $rs=mysqli_query($link,$sql); ?>
ID 书名 价格 入库时间 类别 现有数量(本) 操作
您已借阅   我要还书"; }else{ if($rows["leave_number"]==0){ echo "该书已借完"; }else{ echo "我要借书"; } } ?>
首页 | 上一页 | 下一页 | 末页 首页 | 上一页 | 下一页 | 末页 首页 | 上一页 | &pageno=" class="forumRowHighlight">下一页 | 末页  页次:/ 页 共有条信息
 Copyright @ 2013-2016


Continuing Learning
||
图书管理系统主页面
$pagecount) //当前页数大于总页数时显示总页数 { $pageno=$pagecount; } $startno=($pageno-1)*$pagesize; //每页从第几条数据开始显示 if(!urldecode($_GET["proid"])){ $sql="select * from yx_books order by id desc limit $startno,$pagesize"; }else{ $sql="select * from yx_books where type='".urldecode($_GET['proid'])."' order by id desc limit $startno,$pagesize"; } $rs=mysqli_query($link,$sql); ?>
ID 书名 价格 入库时间 类别 现有数量(本) 操作
您已借阅 我要还书"; }else{ if($rows["leave_number"]==0){ echo "该书已借完"; }else{ echo "我要借书"; } } ?>
首页 | 上一页 | 下一页 | 末页 首页 | 上一页 | 下一页 | 末页 首页 | 上一页 | &pageno=" class="forumRowHighlight">下一页 | 末页 页次:/ 页 共有条信息
Copyright @ 2013-2016
submit Reset Code
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!