BBS(php & mysql)完整版(四)


Posted in PHP onOctober 09, 2006

//此页面为 top.php

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<script language="JavaScript1.2" src="js/fw_menu.js"></script>
<script language="JavaScript1.2" src="js/menu_comment.js"></script>
</head>

<body bgcolor="#FFFFFF" text="#000000">

<div id="Layer1" style="position:absolute; left:151px; top:81px; width:558px; height:48px; z-index:1">  
  <script language="JavaScript1.2">fwLoadMenus();</script>
  <img name="phpd" src="pic/phpd.gif" width="600" height="28" border="0" usemap="#m_phpd">  
  <!-- fwtable fwsrc="phpd.png" fwbase="phpd" fwstyle="Dreamweaver" fwdocid = "742308039" fwnested="0" -->
  <map name="m_phpd">  
    <area shape="rect" coords="378,-6,464,18" href="#" onMouseOut="parent.mainFrame.FW_startTimeout();"  onMouseOver="parent.mainFrame.window.FW_showMenu(window.fw_menu_0,381,0);"  >
    <area shape="rect" coords="265,0,343,21" href="#" onMouseOut="parent.mainFrame.FW_startTimeout();"  onMouseOver="parent.mainFrame.window.FW_showMenu(window.fw_menu_1,266,0);"  >
    <area shape="rect" coords="142,-6,227,20" href="#" onMouseOut="parent.mainFrame.FW_startTimeout();"  onMouseOver="parent.mainFrame.window.FW_showMenu(window.fw_menu_2,149,0);"  >
    <area shape="rect" coords="31,-7,114,21" href="#" onMouseOut="parent.mainFrame.FW_startTimeout();"  onMouseOver="parent.mainFrame.window.FW_showMenu(window.fw_menu_3,40,0);"  >
     <area shape="rect" coords="31,-7,580,21" href="sturecord.php" target="_blank"    >
  </map>
</div>
<div id="Layer2" style="position:absolute; left:4px; top:3px; width:148px; height:98px; z-index:2"><a href="aboutme.php" target="_blank"><img src="pic/FD_03Sd.gif" width="133" height="100" border="0" align="left" alt="站长自我介绍!!"></a></div>
</body>
</html>

//此页面为 index.php
<?

header("Expires: Sun, 28 Dec 1997 09:32:45 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");

?>

<html>
<head>
<title>::: xiaoyang :::</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<frameset rows="103,*" frameborder="NO" border="0" framespacing="0" cols="*">  
  <frame name="topFrame" scrolling="NO" noresize src="top.php" >
  <frameset cols="128,*" frameborder="NO" border="0" framespacing="0" rows="*">  
    <frame name="leftFrame" scrolling="no" noresize src="right.php">
    <frame name="mainFrame" scrolling="auto" noresize src="left.php">
  </frameset>
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">

</body>
</noframes>  

</html>

PHP 相关文章推荐
PHP中的超全局变量
Oct 09 PHP
php查看session内容的函数
Aug 27 PHP
php session应用实例 登录验证
Mar 16 PHP
memcached 和 mysql 主从环境下php开发代码详解
May 16 PHP
PHP header()函数常用方法总结
Apr 11 PHP
phpExcel中文帮助手册之常用功能指南
Aug 18 PHP
PHP多个文件上传到服务器实例
Oct 29 PHP
php实现编辑和保存文件的方法
Jul 20 PHP
php 输入输出流详解及示例代码
Aug 25 PHP
phpmailer绑定邮箱的实现方法
Dec 01 PHP
PHP钩子与简单分发方式实例分析
Sep 04 PHP
PHP基于openssl实现的非对称加密操作示例
Jan 11 PHP
BBS(php &amp; mysql)完整版(一)
Oct 09 #PHP
建立动态的WML站点(二)
Oct 09 #PHP
建立动态的WML站点(一)
Oct 09 #PHP
建立动态的WML站点(三)
Oct 09 #PHP
Session的工作方式
Oct 09 #PHP
用Flash图形化数据(一)
Oct 09 #PHP
PHP中Session的概念
Oct 09 #PHP
You might like
谈一谈收音机的高放电路
2021/03/02 无线电
PHP将整个网站生成HTML纯静态网页的方法总结
2012/02/05 PHP
PHP中使用smarty生成静态文件的例子
2014/04/24 PHP
php实现的简易扫雷游戏实例
2015/07/09 PHP
PHP编译configure时常见错误的总结
2017/08/17 PHP
php 使用expat方式解析xml文件操作示例
2019/11/26 PHP
json原理分析及实例介绍
2012/11/29 Javascript
js Map List 遍历使用示例
2013/07/10 Javascript
js HTML5多媒体影音播放
2016/10/17 Javascript
Vue.2.0.5实现Class 与 Style 绑定的实例
2017/06/20 Javascript
vue2.0项目中使用Ueditor富文本编辑器示例代码
2017/08/14 Javascript
js 倒计时(高效率服务器时间同步)
2017/09/12 Javascript
8 个有用的JS技巧(推荐)
2019/07/03 Javascript
Python版实现微信公众号扫码登陆
2020/05/28 Javascript
[58:23]LGD vs TNC 2019国际邀请赛小组赛 BO2 第一场 8.15
2019/08/16 DOTA
使用PyV8在Python爬虫中执行js代码
2017/02/16 Python
Python md5与sha1加密算法用法分析
2017/07/14 Python
详细分析python3的reduce函数
2017/12/05 Python
Python排序算法之选择排序定义与用法示例
2018/04/29 Python
python中单下划线_的常见用法总结
2018/07/10 Python
Django 视图层(view)的使用
2018/11/09 Python
Python面向对象程序设计之私有属性及私有方法示例
2019/04/08 Python
详解Python二维数组与三维数组切片的方法
2019/07/18 Python
django-rest-framework 自定义swagger过程详解
2019/07/18 Python
Python制作词云图代码实例
2019/09/09 Python
Python中if有多个条件处理方法
2020/02/26 Python
美国隐形眼镜销售网站:ContactsDirect
2017/10/28 全球购物
艺龙旅行网酒店预订:国内、港澳台酒店
2018/06/26 全球购物
建筑系毕业生自我鉴定
2014/01/24 职场文书
中学教师请假制度
2014/02/03 职场文书
本科毕业生专业自荐书范文
2014/02/05 职场文书
师范生自我鉴定
2014/03/20 职场文书
安全先进班组材料
2014/12/26 职场文书
2016秋季校长开学典礼致辞
2015/11/26 职场文书
少先队大队委竞选口号
2015/12/25 职场文书
标准发言稿结尾
2019/07/18 职场文书