allloan.php

来自「图书管理系统」· PHP 代码 · 共 36 行

PHP
36
字号
<?php
	session_start();
	require "conn.php";
	require "userfun.inc";
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title><?php echo $webname;?></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="default.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<?php
	require "top.php";
	require "right.php";
	$userid = $_SESSION['userid'];
	$gbdate = date("Y-m-d");
	if($userid == "")
	{
		echo "<div id='main'><div class='hr'><hr /></div><h2>请 先 登 录</h2></div>";
	}
	else
	{

		$ufun = new useros();
		$ufun -> loanbook();
	}
	require "foot.php";
?>
</center>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?