- 1、本文档共24页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
林子州_0923010067
广州大学学生实验报告
开课学院及实验室:计算机科学与工程实验室 2012年 6月 17日
学院 计算机科学与教育软件学院 年级/专业/班 网工092班 姓名 林子州 学号 0923010067 实验课程名称 Web应用技术Web站点设计
通过自己建立一个网站,学会综合利用各种web应用技术
二、实验内容
自选主题设计并建立一个网站
三、实验原理
利用所学的web技术:静态HTML, CSS,JavaScript, JSP, JavaBean, Servlet等技术:
四、实验设备
Windows xp mysql apache php
五、实验要求
自选主题设计并建立一个网站
六、实验程序
本程序为一个图书管理系统:
显示所有图书:Allbook.php:
?php
session_start();
require conn.php;
?
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 userfun.inc;
require top.php;
require right.php;
if( isset($_GET[page]) )
{
$page = intval( $_GET[page] );
}
else
{
$page = 1;
}
$ufun = new useros();
u
require foot.php;
?
/center
/body
/html
查找图书serachbook.php
?php
session_start();
require conn.php;
?
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;
require searchbookframe.php;
require foot.php;
?
/center
/body
/html
借阅图书 loan.php?php
session_start();
require conn.php;
?
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;
require loanframe.php;
require foot.php;
?
/center
/body
/html
归还图书giveback.php
?php
session_start();
require conn.php;
require admin/adminfun.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=
文档评论(0)