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 相关文章推荐
wiki-shan写的php在线加密的解密程序
Sep 07 PHP
PHP中几个常用的魔术常量
Feb 23 PHP
php异常处理技术,顶级异常处理器
Jun 13 PHP
php实现批量压缩图片文件大小的脚本
Jul 04 PHP
PHP中使用循环实现的金字塔图形
Nov 08 PHP
Apache无法自动跳转却显示目录的解决方法
Nov 30 PHP
php blowfish加密解密算法
Jul 02 PHP
php从数据库中读取特定的行(实例)
Jun 02 PHP
PHP基于关联数组20行代码搞定约瑟夫问题示例
Nov 07 PHP
ThinkPHP框架整合微信支付之Native 扫码支付模式二图文详解
Apr 09 PHP
详解PHP 7.4 中数组延展操作符语法知识点
Jul 19 PHP
Laravel基础-关于引入公共文件的两种方式
Oct 18 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
php更改目录及子目录下所有的文件后缀扩展名的代码
2010/10/12 PHP
yii上传文件或图片实例
2014/04/01 PHP
tbody元素支持嵌套的注意方法
2007/03/24 Javascript
Extjs ajax同步请求时post方式参数发送方式
2009/08/05 Javascript
把html页面的部分内容保存成新的html文件的jquery代码
2009/11/12 Javascript
向当前style sheet中插入一个新的style实现方法
2013/04/01 Javascript
jQuery随手笔记之常用的jQuery操作DOM事件
2015/11/29 Javascript
阿里云ecs服务器中安装部署node.js的步骤
2016/10/08 Javascript
Bootstrap Table使用方法解析
2016/10/19 Javascript
bootstrap是什么_动力节点Java学院整理
2017/07/14 Javascript
mpvue跳转页面及注意事项
2018/08/03 Javascript
详解vue更改头像功能实现
2019/04/28 Javascript
JavaScript实现图片的放大缩小及拖拽功能示例
2019/05/14 Javascript
Python中urllib2模块的8个使用细节分享
2015/01/01 Python
以一段代码为实例快速入门Python2.7
2015/03/31 Python
Django发送html邮件的方法
2015/05/26 Python
python简单实现基于SSL的IRC bot实例
2015/06/15 Python
Python爬虫实现爬取京东手机页面的图片(实例代码)
2017/11/30 Python
基于Django filter中用contains和icontains的区别(详解)
2017/12/12 Python
TF-IDF与余弦相似性的应用(二) 找出相似文章
2017/12/21 Python
python使用rpc框架gRPC的方法
2018/08/24 Python
解决Python获取字典dict中不存在的值时出错问题
2018/10/17 Python
python如何实现异步调用函数执行
2019/07/08 Python
python实现操作文件(文件夹)
2019/10/31 Python
python3 通过 pybind11 使用Eigen加速代码的步骤详解
2020/12/07 Python
CSS3教程(4):网页边框和网页文字阴影
2009/04/02 HTML / CSS
Css3实现无缝滚动防抖
2020/09/14 HTML / CSS
HTML5 常用语法一览(列举不支持的属性)
2010/01/26 HTML / CSS
美国知名的摄影器材销售网站:Adorama
2017/02/01 全球购物
美国办公用品折扣网站:Shoplet.com
2019/11/24 全球购物
介绍下static、final、abstract区别
2015/01/30 面试题
2014年教师节寄语
2014/04/03 职场文书
小学英语课后反思
2014/04/26 职场文书
工地材料员岗位职责
2015/04/11 职场文书
教师纪律作风整顿心得体会
2016/01/23 职场文书
工作建议书范文
2019/07/08 职场文书