当前位置: 编程技术>php
本页文章导读:
▪我的论坛源代码(二)
主界面,也就是显示主题列表的这页。 //foxbbs.php 功能:显示论坛的主题 <HTML> <HEAD> <TITLE>狐网论坛</TITLE> <STYLE type=text/css> P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt} .........
▪我的论坛源代码(三)
显示主题内容页面。 <HTML> <HEAD> <TITLE>狐网论坛</TITLE> <STYLE type=text/css> P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt} DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt} </ST.........
▪我的论坛源代码(四)
POST.PHP发布主题的页面,发布的信息提交到OKEY.PHP中去处理。 <html> <head> <title>论坛发帖</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <STYLE type=text/css> P .........
[1]我的论坛源代码(二)
来源: 互联网 发布时间: 2013-11-30
主界面,也就是显示主题列表的这页。
//foxbbs.php 功能:显示论坛的主题
<HTML>
<HEAD>
<TITLE>狐网论坛</TITLE>
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<LINK href="/blog_article/js/lfox.css" rel=stylesheet /LINK>
<?php
include "linkfox.inc.php";
include "info.inc.php";
?>
</HEAD>
<body bgcolor="#FFFFFF">
<?
$tem=$HTTP_COOKIE_VARS[FlyFoxNet]; //这里取COOKIE里的信息
$temp=explode("|",$tem); //因为用户名和密码是用"|"分隔并记录在COOKIE里的
$cookiem=$temp[0]; //取用户名
$useinfo=cuser($cookiem,$action); //CUSER这个函数是用来判别是否从COOKIE中取出了信息
$query="select usename from useinfo where usename='".$useinfo[0]."'"; //检查是否注册用户
$req=mysql_query($query);
if ($req)
{
$usename=mysql_fetch_array($req);
if($usename[0]==$useinfo[0]) $useinfo[0]=$usename[0];
else {
$usename=1;
$useinfo[0]="游客";
}
}
else $usename=1;$useinfo[0]="游客";
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="40" rowspan="2" width="60%">
<div align="right"></div>
<div align="right"></div>
</td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
</tr>
<tr>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/edit.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="10%"><a href="/blog_article/okey/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20" width=60%>
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>主题列表</font> <? echo "<font color='00dd00'>".$useinfo[2]."</font><font color='ff0000'>"; echo "欢迎你来到论坛!</font>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><? echo "<a href='/blog_article/post.html'><img src='/blog_article/images/newthread.gif' width='70' height='20' border='0' alt='发布新帖'></a>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><? if ($action==find) echo "<a href='/blog_article/foxbbs.html'><img src='/blog_article/images/dispall.gif' width='70' height='20' border='0' alt='显示所有贴子列表'></a>"; else echo "<a href='/blog_article/superuse.html' target='_blank'><img src='/blog_article/images/super.gif' border='0' alt='管理专区,非请莫进'></a>";?></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/dl.html"><img src="/blog_article/images/dl.gif" border="0" alt="登录用户"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="http://lfox.oso.com.cn/index.php" target="_blank"><img src="/blog_article/images/fox.gif" border="0" alt="返回狐网首页"></a></div>
</td>
</tr>
</table>
<? echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
echo "<tr bgcolor='#000000'><td><table width='100%' border='0' cellspacing='1' cellpadding='1'>";
?> <tr bgcolor="#229999">
<td width="5%">
<div align="center"><font color="#FFFFFF">状态</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">表情</font></div>
</td>
<td width="30%">
<div align="center"><font color="#FFFFFF">主 题</font></div>
</td>
<td width="25%">
<div align="center"><font color="#FFFFFF">作 者</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">回复</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">人气</font></div>
</td>
<td width="25%">
<div align="center"><font color="#FFFFFF">最后回复时间</font></div>
</td>
</tr>
<?php
$imgnum=20; //点击次数,准备改状态图
if (!$user) $user="all";
$query="select count(*) from foxbbs"; //首先计算总的论题数
$req=mysql_query($query);
if ($req)
{
$row=mysql_fetch_array($req);
$num=$row[0];
if (!$rows) $rows=10; //控制每页显示条数
if (!$l) $l=1; //设定排序方式
if ($num/$rows<1) $page=1; //计算总页数
else if($num/$rows==floor($num/$rows)) $page=$num/$rows;
else $page=floor($num/$rows)+1;
if (!$dpage) $dpage=1; //当前显示的页数
if ($dpage>$page) $dpage=$page; //不能超过最大页数
if ($dpage==1) $tem=0; //控制当前页应该显示的信息
else $tem=($dpage-1)*$rows;
if ($l==2) $s="hfnum";
else if ($l==3) $s="djnum";
else $s="id";
for ($i=0;$i<$rows;$i++) //根据设定的每页行数来取记录
{
$tem1=$tem+1;
if($action==find) $query="select * from foxbbs where usename='".$user."' order by $s desc limit $tem,$tem1";
else $query="select * from foxbbs order by $s desc limit $tem,$tem1";
$req=mysql_query($query);
if ($req)
{
$bbs=mysql_fetch_array($req); //看有没有回复时间,如果没有就取发帖时间代替回复时间
if ($bbs[3])
{
if (!$bbs[8]) $bbs[8]=$bbs[4]." ".$bbs[1];
else $bbs[8]=$bbs[8]." ".$bbs[10];
if (substr($bbs[4],0,-8)==date(Y年n月j日)&&$bbs[6]<$imgnum&&$bbs[12]!=1) // 如果是当天的帖子
$img="images/newfolder.gif";
else if(substr($bbs[4],0,-8)==date(Y年n月j日)&&$bbs["djnum"]>=$imgnum&&$bbs[12]!=1) //如果是当天,并且点击数上10
$img="images/newhotfolder.gif";
else if(substr($bbs[4],0,-8)!=date(Y年n月j日)&&$bbs[6]>=$imgnum&&$bbs[12]!=1) //如果不是当天,但点击上20
$img="images/hotfolder.gif";
else if($bbs[12]==1) $img="images/lock.gif"; //已锁
else $img="images/folder.gif";
echo "<tr bgcolor='#eeeeee'>";
echo "<td width='5%'><div align='center'><img src='".$img."'></div></td>";
echo "<td width='5%'><div align='center'><img src='/blog_article/images/index.html".$bbs[2].".gif'></div></td>";
echo "<td width='30%'><div align='left'>";
if ($bbs[12]==1) echo $bbs[3]."</div></td>";
else echo "<a href='/blog_article/dispbbs/id/.html".$bbs[0]."&use=".$bbs[1]."'>".$bbs[3]."</a></div></td>";
echo "<td width='25%'><div align='center'>".$bbs[1]."</div></td>";
echo "<td width='5%'><div align='center'>".$bbs[7]."</div></td>";
echo "<td width='5%'><div align='center'>".$bbs[6]."</div></td>";
echo "<td width='25%'><div align='left'>".$bbs[8]."</div></td></tr>";
}
}
$tem++;
}
}
echo "<tr><td colspan='7'>";
echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
echo "<tr>";
echo "<td height='15' width='100%' colspan='3' bgcolor='#229999'><div align='left'><font color='ffffff'>|===> ";
if($page==1)
{
echo "[上一页] [下一页]";
}
else if ($dpage==1) //如果当前在第一页
{
$u=$dpage+1;
echo "[上一页] <a href='/blog_article/foxbbs/dpage/.html".$u."&rows=".$rows."&l=".$l."&user=".$user."'>[下一页]</a>";
}
else if($dpage>1&&$dpage<$page) //如果当前在中间页
{
$u=$dpage+1;
$d=$dpage-1;
echo "<a href='/blog_article/foxbbs/dpage/.html".$d."&rows=".$rows."&l=".$l."&user=".$user."'>[上一页]</a> <a href='/blog_article/foxbbs/dpage/.html".$u."&rows=".$rows."&l=".$l."&user=".$user."'>[下一页]</a>";
}
else if($dpage==$page) //如果当前在最后一页
{
$d=$dpage-1;
echo "<a href='/blog_article/foxbbs/dpage/.html".$d."&rows=".$rows."&l=".$l."&user=".$user."'>[上一页]</a> [下一页]";
}
echo "</font></div></td>";
echo "</tr></table></td></tr></table></td></tr></table>";
echo "<div align='center'>论题数:".$num." 当前第".$dpage."页/共有".$page."页<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
for ($i=1;$i<=$page;$i++)
{
if ($i==$dpage) echo "<option value='foxbbs.php?dpage=".$i."&rows=".$row."&l=".$l."&user=".$user."' selected>第".$i."页</option>";
else echo "<option value='foxbbs.php?dpage=".$i."&rows=".$rows."&l=".$l."'>第".$i."页</option>";
}
echo "</select>";
echo "<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
echo "<option value='' selected>选择排序方式</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=1'>安发贴时间排序</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=3'>安点击数排序</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=2'>安回复数排序</option>";
echo "</select>";
echo "<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
echo "<option value='' selected>选择每页显示行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=5&l=".$l."&user=".$user."'>每页五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=10&l=".$l."&user=".$user."'>每页十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=15&l=".$l."&user=".$user."'>每页十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=20&l=".$l."&user=".$user."'>每页二十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=25&l=".$l."&user=".$user."'>每页二十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=30&l=".$l."&user=".$user."'>每页三十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=35&l=".$l."&user=".$user."'>每页三十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=40&l=".$l."&user=".$user."'>每页四十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=45&l=".$l."&user=".$user."'>每页四十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=50&l=".$l."&user=".$user."'>每页五十行</option>";
echo "</select>";
$query="select count(*) from useinfo"; //统计注册用户数
$req=mysql_query($query);
$usenum=mysql_fetch_array($req);
$query="select usename from useinfo order by useid desc limit 0,1"; //查找最新注册的用户,因为ID是自增的,所以可以根据ID来判断,最大的也就是最新的。
$req=mysql_query($query);
$newuse=mysql_fetch_array($req);
echo " 目前共有成员[<font color='ff0000'>".$usenum[0]."</font>]名/最新加盟[<font color='ff0000'>".$newuse[0]."</font>]";
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30"> </td>
</tr>
<tr>
<td height="30">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20" width="20%">
<div align="left">状态说明:</div>
</td>
<td height="20" width="20%">
<div align="left"></div>
</td>
<td height="20"> </td>
<td height="20"> </td>
</tr>
<tr>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/newfolder.gif" width="14" height="11">
当天产生新论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/newhotfolder.gif" width="14" height="17">
当天回复最高的论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/folder.gif" width="14" height="11">
一天以前的论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/hotfolder.gif" width="14" height="17">
总计回复超过50个的论题</div>
</td>
</tr>
<tr>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/lock.gif" width="12" height="15">
已被关闭的主题 </div>
</td>
<td height="20" width="25%">
<div align="left"></div>
</td>
<td height="20" width="25%">
<div align="left"></div>
</td>
<td height="20" width="25%">
<tr><td colspan="4" height="100"><div align="center"><font color="ff0000">★论坛说明★</font></div><br><div align="left">
1、此论坛只有注册用户才能发贴,如果您没注册,可以游客身份,查看、回复贴子,但是不能发帖。<br>
2、发帖用户将对论坛内所发的言论负全部责任,回本论坛主要是以情感方面为话题,(在技术论坛出来以前,可以适当地讨论技术方面的问题),如果站长一旦发现有用户使用本论坛讨论其它无关话题,将会立即加锁。(本站将相继推出其它论坛)<br>
3、我还没想到。呵呵……
</div></td></tr>
<div align="left"></div>
<tr><td height="70"></td></tr>
<tr>
<td height="20" colspan="4">
<div align="center">< <a href="mailto:hllinyu@netease.com">与我联系</a> |─| <a href="mailto:hllinyu@netease.com">FlyFox@Net</a> ></div>
</td>
</tr>
<tr><td height="20"></td></tr>
<tr>
<td height="20" colspan="4">
<div align="center"><font color="#6666FF">飞狐工作室制作开发</font></div>
</td>
</tr>
</table>
</td>
</tr>
</body>
</html>
//foxbbs.php 功能:显示论坛的主题
<HTML>
<HEAD>
<TITLE>狐网论坛</TITLE>
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<LINK href="/blog_article/js/lfox.css" rel=stylesheet /LINK>
<?php
include "linkfox.inc.php";
include "info.inc.php";
?>
</HEAD>
<body bgcolor="#FFFFFF">
<?
$tem=$HTTP_COOKIE_VARS[FlyFoxNet]; //这里取COOKIE里的信息
$temp=explode("|",$tem); //因为用户名和密码是用"|"分隔并记录在COOKIE里的
$cookiem=$temp[0]; //取用户名
$useinfo=cuser($cookiem,$action); //CUSER这个函数是用来判别是否从COOKIE中取出了信息
$query="select usename from useinfo where usename='".$useinfo[0]."'"; //检查是否注册用户
$req=mysql_query($query);
if ($req)
{
$usename=mysql_fetch_array($req);
if($usename[0]==$useinfo[0]) $useinfo[0]=$usename[0];
else {
$usename=1;
$useinfo[0]="游客";
}
}
else $usename=1;$useinfo[0]="游客";
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="40" rowspan="2" width="60%">
<div align="right"></div>
<div align="right"></div>
</td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
</tr>
<tr>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/edit.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="10%"><a href="/blog_article/okey/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20" width=60%>
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>主题列表</font> <? echo "<font color='00dd00'>".$useinfo[2]."</font><font color='ff0000'>"; echo "欢迎你来到论坛!</font>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><? echo "<a href='/blog_article/post.html'><img src='/blog_article/images/newthread.gif' width='70' height='20' border='0' alt='发布新帖'></a>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><? if ($action==find) echo "<a href='/blog_article/foxbbs.html'><img src='/blog_article/images/dispall.gif' width='70' height='20' border='0' alt='显示所有贴子列表'></a>"; else echo "<a href='/blog_article/superuse.html' target='_blank'><img src='/blog_article/images/super.gif' border='0' alt='管理专区,非请莫进'></a>";?></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/dl.html"><img src="/blog_article/images/dl.gif" border="0" alt="登录用户"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="http://lfox.oso.com.cn/index.php" target="_blank"><img src="/blog_article/images/fox.gif" border="0" alt="返回狐网首页"></a></div>
</td>
</tr>
</table>
<? echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
echo "<tr bgcolor='#000000'><td><table width='100%' border='0' cellspacing='1' cellpadding='1'>";
?> <tr bgcolor="#229999">
<td width="5%">
<div align="center"><font color="#FFFFFF">状态</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">表情</font></div>
</td>
<td width="30%">
<div align="center"><font color="#FFFFFF">主 题</font></div>
</td>
<td width="25%">
<div align="center"><font color="#FFFFFF">作 者</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">回复</font></div>
</td>
<td width="5%">
<div align="center"><font color="#FFFFFF">人气</font></div>
</td>
<td width="25%">
<div align="center"><font color="#FFFFFF">最后回复时间</font></div>
</td>
</tr>
<?php
$imgnum=20; //点击次数,准备改状态图
if (!$user) $user="all";
$query="select count(*) from foxbbs"; //首先计算总的论题数
$req=mysql_query($query);
if ($req)
{
$row=mysql_fetch_array($req);
$num=$row[0];
if (!$rows) $rows=10; //控制每页显示条数
if (!$l) $l=1; //设定排序方式
if ($num/$rows<1) $page=1; //计算总页数
else if($num/$rows==floor($num/$rows)) $page=$num/$rows;
else $page=floor($num/$rows)+1;
if (!$dpage) $dpage=1; //当前显示的页数
if ($dpage>$page) $dpage=$page; //不能超过最大页数
if ($dpage==1) $tem=0; //控制当前页应该显示的信息
else $tem=($dpage-1)*$rows;
if ($l==2) $s="hfnum";
else if ($l==3) $s="djnum";
else $s="id";
for ($i=0;$i<$rows;$i++) //根据设定的每页行数来取记录
{
$tem1=$tem+1;
if($action==find) $query="select * from foxbbs where usename='".$user."' order by $s desc limit $tem,$tem1";
else $query="select * from foxbbs order by $s desc limit $tem,$tem1";
$req=mysql_query($query);
if ($req)
{
$bbs=mysql_fetch_array($req); //看有没有回复时间,如果没有就取发帖时间代替回复时间
if ($bbs[3])
{
if (!$bbs[8]) $bbs[8]=$bbs[4]." ".$bbs[1];
else $bbs[8]=$bbs[8]." ".$bbs[10];
if (substr($bbs[4],0,-8)==date(Y年n月j日)&&$bbs[6]<$imgnum&&$bbs[12]!=1) // 如果是当天的帖子
$img="images/newfolder.gif";
else if(substr($bbs[4],0,-8)==date(Y年n月j日)&&$bbs["djnum"]>=$imgnum&&$bbs[12]!=1) //如果是当天,并且点击数上10
$img="images/newhotfolder.gif";
else if(substr($bbs[4],0,-8)!=date(Y年n月j日)&&$bbs[6]>=$imgnum&&$bbs[12]!=1) //如果不是当天,但点击上20
$img="images/hotfolder.gif";
else if($bbs[12]==1) $img="images/lock.gif"; //已锁
else $img="images/folder.gif";
echo "<tr bgcolor='#eeeeee'>";
echo "<td width='5%'><div align='center'><img src='".$img."'></div></td>";
echo "<td width='5%'><div align='center'><img src='/blog_article/images/index.html".$bbs[2].".gif'></div></td>";
echo "<td width='30%'><div align='left'>";
if ($bbs[12]==1) echo $bbs[3]."</div></td>";
else echo "<a href='/blog_article/dispbbs/id/.html".$bbs[0]."&use=".$bbs[1]."'>".$bbs[3]."</a></div></td>";
echo "<td width='25%'><div align='center'>".$bbs[1]."</div></td>";
echo "<td width='5%'><div align='center'>".$bbs[7]."</div></td>";
echo "<td width='5%'><div align='center'>".$bbs[6]."</div></td>";
echo "<td width='25%'><div align='left'>".$bbs[8]."</div></td></tr>";
}
}
$tem++;
}
}
echo "<tr><td colspan='7'>";
echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
echo "<tr>";
echo "<td height='15' width='100%' colspan='3' bgcolor='#229999'><div align='left'><font color='ffffff'>|===> ";
if($page==1)
{
echo "[上一页] [下一页]";
}
else if ($dpage==1) //如果当前在第一页
{
$u=$dpage+1;
echo "[上一页] <a href='/blog_article/foxbbs/dpage/.html".$u."&rows=".$rows."&l=".$l."&user=".$user."'>[下一页]</a>";
}
else if($dpage>1&&$dpage<$page) //如果当前在中间页
{
$u=$dpage+1;
$d=$dpage-1;
echo "<a href='/blog_article/foxbbs/dpage/.html".$d."&rows=".$rows."&l=".$l."&user=".$user."'>[上一页]</a> <a href='/blog_article/foxbbs/dpage/.html".$u."&rows=".$rows."&l=".$l."&user=".$user."'>[下一页]</a>";
}
else if($dpage==$page) //如果当前在最后一页
{
$d=$dpage-1;
echo "<a href='/blog_article/foxbbs/dpage/.html".$d."&rows=".$rows."&l=".$l."&user=".$user."'>[上一页]</a> [下一页]";
}
echo "</font></div></td>";
echo "</tr></table></td></tr></table></td></tr></table>";
echo "<div align='center'>论题数:".$num." 当前第".$dpage."页/共有".$page."页<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
for ($i=1;$i<=$page;$i++)
{
if ($i==$dpage) echo "<option value='foxbbs.php?dpage=".$i."&rows=".$row."&l=".$l."&user=".$user."' selected>第".$i."页</option>";
else echo "<option value='foxbbs.php?dpage=".$i."&rows=".$rows."&l=".$l."'>第".$i."页</option>";
}
echo "</select>";
echo "<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
echo "<option value='' selected>选择排序方式</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=1'>安发贴时间排序</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=3'>安点击数排序</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=".$rows."&user=".$user."&l=2'>安回复数排序</option>";
echo "</select>";
echo "<select name='dpage' onChange='javascript:location.href=/blog_article/this.options[this.selectedIndex].value'>";
echo "<option value='' selected>选择每页显示行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=5&l=".$l."&user=".$user."'>每页五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=10&l=".$l."&user=".$user."'>每页十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=15&l=".$l."&user=".$user."'>每页十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=20&l=".$l."&user=".$user."'>每页二十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=25&l=".$l."&user=".$user."'>每页二十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=30&l=".$l."&user=".$user."'>每页三十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=35&l=".$l."&user=".$user."'>每页三十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=40&l=".$l."&user=".$user."'>每页四十行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=45&l=".$l."&user=".$user."'>每页四十五行</option>";
echo "<option value='foxbbs.php?dpage=".$dpage."&rows=50&l=".$l."&user=".$user."'>每页五十行</option>";
echo "</select>";
$query="select count(*) from useinfo"; //统计注册用户数
$req=mysql_query($query);
$usenum=mysql_fetch_array($req);
$query="select usename from useinfo order by useid desc limit 0,1"; //查找最新注册的用户,因为ID是自增的,所以可以根据ID来判断,最大的也就是最新的。
$req=mysql_query($query);
$newuse=mysql_fetch_array($req);
echo " 目前共有成员[<font color='ff0000'>".$usenum[0]."</font>]名/最新加盟[<font color='ff0000'>".$newuse[0]."</font>]";
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30"> </td>
</tr>
<tr>
<td height="30">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20" width="20%">
<div align="left">状态说明:</div>
</td>
<td height="20" width="20%">
<div align="left"></div>
</td>
<td height="20"> </td>
<td height="20"> </td>
</tr>
<tr>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/newfolder.gif" width="14" height="11">
当天产生新论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/newhotfolder.gif" width="14" height="17">
当天回复最高的论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/folder.gif" width="14" height="11">
一天以前的论题</div>
</td>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/hotfolder.gif" width="14" height="17">
总计回复超过50个的论题</div>
</td>
</tr>
<tr>
<td height="20" width="25%">
<div align="left"><img src="/blog_article/images/lock.gif" width="12" height="15">
已被关闭的主题 </div>
</td>
<td height="20" width="25%">
<div align="left"></div>
</td>
<td height="20" width="25%">
<div align="left"></div>
</td>
<td height="20" width="25%">
<tr><td colspan="4" height="100"><div align="center"><font color="ff0000">★论坛说明★</font></div><br><div align="left">
1、此论坛只有注册用户才能发贴,如果您没注册,可以游客身份,查看、回复贴子,但是不能发帖。<br>
2、发帖用户将对论坛内所发的言论负全部责任,回本论坛主要是以情感方面为话题,(在技术论坛出来以前,可以适当地讨论技术方面的问题),如果站长一旦发现有用户使用本论坛讨论其它无关话题,将会立即加锁。(本站将相继推出其它论坛)<br>
3、我还没想到。呵呵……
</div></td></tr>
<div align="left"></div>
<tr><td height="70"></td></tr>
<tr>
<td height="20" colspan="4">
<div align="center">< <a href="mailto:hllinyu@netease.com">与我联系</a> |─| <a href="mailto:hllinyu@netease.com">FlyFox@Net</a> ></div>
</td>
</tr>
<tr><td height="20"></td></tr>
<tr>
<td height="20" colspan="4">
<div align="center"><font color="#6666FF">飞狐工作室制作开发</font></div>
</td>
</tr>
</table>
</td>
</tr>
</body>
</html>
[2]我的论坛源代码(三)
来源: 互联网 发布时间: 2013-11-30
显示主题内容页面。
<HTML>
<HEAD>
<TITLE>狐网论坛</TITLE>
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<LINK href="/blog_article/js/cpcw.css" rel=stylesheet /LINK>
<?php
include "linkfox.inc.php";
include "info.inc.php";
?>
</HEAD>
<body bgcolor="#FFFFFF" text="#000000" id=all>
<?
$query="select * from foxbbs where id='".$id."'"; //这个ID是从上一页面也就是FOXBBS.PHP里传过来的。
$req=mysql_query($query);
if ($req) {
$bbsmes=mysql_fetch_array($req);
$djnum=$bbsmes["djnum"]+1; //点击数加一
$query="update foxbbs set djnum='$djnum' where id='".$id."'";
$req=mysql_query($query);
}
$query="select * from useinfo where usename='".$bbsmes["usename"]."'"; //从用户信息库里取出发帖用户的信息
$req=mysql_query($query);
if ($req) {
$useinfo=mysql_fetch_array($req);
switch ($useinfo[11]) //因为我是用一位数字来表示用户身份
{
case ($useinfo[11]==1):
$useinfo[11]="会员";
break;
case ($useinfo[11]==2):
$useinfo[11]="版主";
break;
case ($useinfo[11]==3):
$useinfo[11]="管理员";
break;
case ($useinfo[11]==4):
$useinfo[11]="站长";
break;
default:
$useinfo[11]="游客";
break;
}
}
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="20">
<div align="right"></div>
</td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
</tr>
<tr>
<td height="20">
<div align="right"></div>
</td>
<td height="20" width="75">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="75">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/use.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="75"><a href="/blog_article/foxbbs/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20">
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>论题:</font></div>
</td>
<td>
<div align="center"><a href="foxbbs.php"><img src="/blog_article/images/index.gif" width="70" height="20" border="0"></a></div>
</td>
<td>
<div align="center"><a href="post.php"><img src="images/newthread.gif" width="70" height="20" border="0" alt="发布新帖"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><? echo "<a href='/blog_article/repal/action/add/amp;id/.html".$id."&zt=".$bbsmes[3]."&use=".$use."'><img src='/blog_article/images/reply.gif' width='70' height='20' border='0' alt='回复此贴'></a>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/dl.html"><img src="/blog_article/images/dl.gif" width="70" height="20" border="0"></a></div>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#000000">
<td colspan="2">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr bgcolor="#009999">
<td width="20%">
<div align="center"><font color="#FFFFFF">原贴作者</font></div>
</td>
<td width="80%">
<div align="center"><font color="#FFFFFF">原 贴 内 容</font></div>
</td>
</tr>
<tr bgcolor="#eeeeee" valign="top">
<td width="20%">
<div align="center"> <? //在用户信息库里没存放表情图象的路径和扩展名
echo $useinfo[2]."<br>";
echo "<img src='/blog_article/images/index.html".$bbsmes[2]."'.gif><br>";
echo $useinfo[11]."<p>";
echo "发帖数 [".$useinfo["ftnum"]."]<br>";
?></div>
</td>
<td width="80%"><div align="left"> <?
$ft="foxbbs/".$bbsmes[5].".fox"; //取出存放的文件名
$message=@file($ft); //读出文件内容
for ($i=0;$i<count($message);$i++)
{ if (ord(substr($message[$i],0,1))==161) //第一位是否全角空格
echo $message[$i];
else {
$message[$i]=" ".trim($message[$i]);
echo $message[$i]; //显示主题内容
}
}
?></div></td>
</tr>
<tr bgcolor="#009999">
<td width="20%">
<div align="left"><img src="/blog_article/images/posticon.gif" width="14" height="11"><? echo $bbsmes[4]; ?></div>
</td>
<td width="80%">
<div align="left"><?
if ($useinfo[9]=="不告诉你")
echo "<img src='/blog_article/images/email.gif' width='43' height='17'>";
else echo "<a href='mailto:".$useinfo[8]."'><img src='/blog_article/images/email.gif' width='43' height='17' alt='给我发邮件' border='0'></a>";
echo " <a href='".$useinfo[9]."' ><img src='/blog_article/images/home.gif' width='43' height='17' alt='我的主页' border='0'></a>";
echo " <a href='/blog_article/useinfo/action/look.html'><img src='/blog_article/images/profile.gif' width='43' height='16' alt='我的详细信息' border='0'></a>";
echo " <a href='useinfo.php?action=edit'><img src='/blog_article/images/edit.gif' width='43' height='17' alt='修改信息' border='0'></a>";
echo " <a href='/blog_article/foxbbs/action/find/amp;user/.html".$useinfo[0]."'><img src='/blog_article/images/find.gif' width='43' height='17' alt='查找该用户的所以文章' border='0'></a>";
echo " <a href='/blog_article/repal/action/add/amp;use/.html".$useinfo[13]."&id=".$id."&zt=".$bbsmes[3]."&c=dd'><img src='/blog_article/images/quote.gif' width='43' height='17' alt='引用该用户的文章回复' border='0'></a>";
echo " <a href='#'><img src='/blog_article/images/ip.gif' border='0' alt='".$bbsmes[11]."'></a>";
?> </div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<?
$hfft="foxbbs/".substr($bbsmes[5]).".bbs";
if (file_exists($hfft)) //是否有回复
{
$tem=@file($hfft);
$temp=implode("",$tem); //先把数组转变成字符串,不用加分融符
$tem=explode("δεζ",$temp);
$num=count($tem)-1;
for ($i=0;$i<$num;$i++)
{ $x=$i+1;
$temp=explode("ㄞㄚㄓ",$tem[$i]); //把每条回复信息分开
if ($temp[5]>0) $temp[5]="images/".$temp[5].".gif"; //显示回复内容
else $temp[5]="images/a.gif";
if (!$temp[6]) $temp[6]="不想告诉你";
echo "<tr><td><table width='100%' border='0' cellspacing='1' cellpadding='1'>";
echo "<tr bgcolor='#009999'><td width='20%'><div align='center'><font color='#FFFFFF'>回贴作者</font></div></td>";
echo "<td width='80%'><div align='center'><font color='#FFFFFF'>回 复 内 容 (第<font color='00ff00'>NO.".$x."</font>号)</font></div></td></tr>";
echo "<tr bgcolor='#eeeeee' valign='top'><td width='20%'><div align='center'>".$temp[1]."<br><img src='".$temp[5]."'><br>OICQ:".$temp[2]."<br>来自:".$temp[6]."<font color='#FFFFFF'></font></div></td>";
echo "<td width='80%'><div align='left'>".$temp[0]."</div></td></tr>";
echo "<tr bgcolor='#009999'><td width='20%'><div align='left'><font color='#FFFFFF'><img src='images/posticon.gif' width='14' height='11'>".$temp[7]."</font></div></td>";
echo "<td width='80%'><div align='left'>";
echo "<a href='mailto:".$temp[4]."'><img src='/blog_article/images/email.gif' width='43' height='17' alt='给我发邮件' border='0'></a>";
echo " <a href='".$temp[3]."' ><img src='/blog_article/images/home.gif' width='43' height='17' alt='我的主页' border='0'></a>";
echo " <a href='#'><img src='/blog_article/images/ip.gif' border='0' alt='".$temp[8]."'></a>";
echo "</div></td></tr>";
echo "</table></td></tr>";
}
}
?>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>狐网论坛</TITLE>
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<LINK href="/blog_article/js/cpcw.css" rel=stylesheet /LINK>
<?php
include "linkfox.inc.php";
include "info.inc.php";
?>
</HEAD>
<body bgcolor="#FFFFFF" text="#000000" id=all>
<?
$query="select * from foxbbs where id='".$id."'"; //这个ID是从上一页面也就是FOXBBS.PHP里传过来的。
$req=mysql_query($query);
if ($req) {
$bbsmes=mysql_fetch_array($req);
$djnum=$bbsmes["djnum"]+1; //点击数加一
$query="update foxbbs set djnum='$djnum' where id='".$id."'";
$req=mysql_query($query);
}
$query="select * from useinfo where usename='".$bbsmes["usename"]."'"; //从用户信息库里取出发帖用户的信息
$req=mysql_query($query);
if ($req) {
$useinfo=mysql_fetch_array($req);
switch ($useinfo[11]) //因为我是用一位数字来表示用户身份
{
case ($useinfo[11]==1):
$useinfo[11]="会员";
break;
case ($useinfo[11]==2):
$useinfo[11]="版主";
break;
case ($useinfo[11]==3):
$useinfo[11]="管理员";
break;
case ($useinfo[11]==4):
$useinfo[11]="站长";
break;
default:
$useinfo[11]="游客";
break;
}
}
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="20">
<div align="right"></div>
</td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
<td height="20" width="75"> </td>
</tr>
<tr>
<td height="20">
<div align="right"></div>
</td>
<td height="20" width="75">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="75">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/use.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="75"><a href="/blog_article/foxbbs/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20">
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>论题:</font></div>
</td>
<td>
<div align="center"><a href="foxbbs.php"><img src="/blog_article/images/index.gif" width="70" height="20" border="0"></a></div>
</td>
<td>
<div align="center"><a href="post.php"><img src="images/newthread.gif" width="70" height="20" border="0" alt="发布新帖"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><? echo "<a href='/blog_article/repal/action/add/amp;id/.html".$id."&zt=".$bbsmes[3]."&use=".$use."'><img src='/blog_article/images/reply.gif' width='70' height='20' border='0' alt='回复此贴'></a>"; ?></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/dl.html"><img src="/blog_article/images/dl.gif" width="70" height="20" border="0"></a></div>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#000000">
<td colspan="2">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr bgcolor="#009999">
<td width="20%">
<div align="center"><font color="#FFFFFF">原贴作者</font></div>
</td>
<td width="80%">
<div align="center"><font color="#FFFFFF">原 贴 内 容</font></div>
</td>
</tr>
<tr bgcolor="#eeeeee" valign="top">
<td width="20%">
<div align="center"> <? //在用户信息库里没存放表情图象的路径和扩展名
echo $useinfo[2]."<br>";
echo "<img src='/blog_article/images/index.html".$bbsmes[2]."'.gif><br>";
echo $useinfo[11]."<p>";
echo "发帖数 [".$useinfo["ftnum"]."]<br>";
?></div>
</td>
<td width="80%"><div align="left"> <?
$ft="foxbbs/".$bbsmes[5].".fox"; //取出存放的文件名
$message=@file($ft); //读出文件内容
for ($i=0;$i<count($message);$i++)
{ if (ord(substr($message[$i],0,1))==161) //第一位是否全角空格
echo $message[$i];
else {
$message[$i]=" ".trim($message[$i]);
echo $message[$i]; //显示主题内容
}
}
?></div></td>
</tr>
<tr bgcolor="#009999">
<td width="20%">
<div align="left"><img src="/blog_article/images/posticon.gif" width="14" height="11"><? echo $bbsmes[4]; ?></div>
</td>
<td width="80%">
<div align="left"><?
if ($useinfo[9]=="不告诉你")
echo "<img src='/blog_article/images/email.gif' width='43' height='17'>";
else echo "<a href='mailto:".$useinfo[8]."'><img src='/blog_article/images/email.gif' width='43' height='17' alt='给我发邮件' border='0'></a>";
echo " <a href='".$useinfo[9]."' ><img src='/blog_article/images/home.gif' width='43' height='17' alt='我的主页' border='0'></a>";
echo " <a href='/blog_article/useinfo/action/look.html'><img src='/blog_article/images/profile.gif' width='43' height='16' alt='我的详细信息' border='0'></a>";
echo " <a href='useinfo.php?action=edit'><img src='/blog_article/images/edit.gif' width='43' height='17' alt='修改信息' border='0'></a>";
echo " <a href='/blog_article/foxbbs/action/find/amp;user/.html".$useinfo[0]."'><img src='/blog_article/images/find.gif' width='43' height='17' alt='查找该用户的所以文章' border='0'></a>";
echo " <a href='/blog_article/repal/action/add/amp;use/.html".$useinfo[13]."&id=".$id."&zt=".$bbsmes[3]."&c=dd'><img src='/blog_article/images/quote.gif' width='43' height='17' alt='引用该用户的文章回复' border='0'></a>";
echo " <a href='#'><img src='/blog_article/images/ip.gif' border='0' alt='".$bbsmes[11]."'></a>";
?> </div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<?
$hfft="foxbbs/".substr($bbsmes[5]).".bbs";
if (file_exists($hfft)) //是否有回复
{
$tem=@file($hfft);
$temp=implode("",$tem); //先把数组转变成字符串,不用加分融符
$tem=explode("δεζ",$temp);
$num=count($tem)-1;
for ($i=0;$i<$num;$i++)
{ $x=$i+1;
$temp=explode("ㄞㄚㄓ",$tem[$i]); //把每条回复信息分开
if ($temp[5]>0) $temp[5]="images/".$temp[5].".gif"; //显示回复内容
else $temp[5]="images/a.gif";
if (!$temp[6]) $temp[6]="不想告诉你";
echo "<tr><td><table width='100%' border='0' cellspacing='1' cellpadding='1'>";
echo "<tr bgcolor='#009999'><td width='20%'><div align='center'><font color='#FFFFFF'>回贴作者</font></div></td>";
echo "<td width='80%'><div align='center'><font color='#FFFFFF'>回 复 内 容 (第<font color='00ff00'>NO.".$x."</font>号)</font></div></td></tr>";
echo "<tr bgcolor='#eeeeee' valign='top'><td width='20%'><div align='center'>".$temp[1]."<br><img src='".$temp[5]."'><br>OICQ:".$temp[2]."<br>来自:".$temp[6]."<font color='#FFFFFF'></font></div></td>";
echo "<td width='80%'><div align='left'>".$temp[0]."</div></td></tr>";
echo "<tr bgcolor='#009999'><td width='20%'><div align='left'><font color='#FFFFFF'><img src='images/posticon.gif' width='14' height='11'>".$temp[7]."</font></div></td>";
echo "<td width='80%'><div align='left'>";
echo "<a href='mailto:".$temp[4]."'><img src='/blog_article/images/email.gif' width='43' height='17' alt='给我发邮件' border='0'></a>";
echo " <a href='".$temp[3]."' ><img src='/blog_article/images/home.gif' width='43' height='17' alt='我的主页' border='0'></a>";
echo " <a href='#'><img src='/blog_article/images/ip.gif' border='0' alt='".$temp[8]."'></a>";
echo "</div></td></tr>";
echo "</table></td></tr>";
}
}
?>
</tr>
</table>
</body>
</html>
[3]我的论坛源代码(四)
来源: 互联网 发布时间: 2013-11-30
POST.PHP发布主题的页面,发布的信息提交到OKEY.PHP中去处理。
<html>
<head>
<title>论坛发帖</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<?
include "linkfox.inc.php";
include "info.inc.php";
?>
<LINK href="/blog_article/js/cpcw.css" rel=stylesheet /LINK>
</head>
<body bgcolor="#FFFFFF">
<?
$tem=$HTTP_COOKIE_VARS[FlyFoxNet]; //取COOKIE信息
$temp=explode("|",$tem);
$cookiem=$temp[0];
$useinfo=cuser($cookiem,$action);
if ($useinfo[2]=="游客") $usename=1;
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="40" rowspan="2" width="60%">
<div align="right"></div>
<div align="right"></div>
</td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
</tr>
<tr>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/edit.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="10%"><a href="/blog_article/okey/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20">
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>发布论题</font> <? echo "<font color='00dd00'>".$useinfo[2]."</font>"; ?></div>
</td>
<td height="20">
<div align="center"><a href="foxbbs.php"><img src="/blog_article/images/index.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="superuse.php"><img src="images/super.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/dl.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/index.html"><img src="/blog_article/images/fox.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
</tr>
</table>
<script language="JavaScript"> //这段JS用来检查表单内信息状态,是不是有点眼熟?呵呵……OSO上CUT下来的了。
<!--
var submitcount=0;
function checkSubmit() {
if (submitcount == 0) {
submitcount++;
return true;
} else {
if (submitcount>0){
alert("帖子已成功提交了,别急,等等!");
return false;
}
}
}
function check_com(){
if(document.form.title.value.length ==0){
submitcount--;
alert("主题不能为空!快填上吧!");
return false;
}
if(document.form.message.value.length == 0){
submitcount--;
alert("OH!SORRY!加贴内容不能为空!");
return false;
}
return true;
}
//-->
</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#009999">
<td height="20"><div align='center'><font color="ffffff">
<? //在前面检查是否用户时给$USEINFO[0]赋了用户信息。
if ($useinfo[0]) echo "<font color='00ff00'>[".$useinfo[2]."]</font> 你好!请在下面填写你的贴子。";
else echo "<font color='00ff00'>".$useinfo[2]."</font>你好,请先登录,再发帖,如果你还未注册,请先注册吧!";
?></font></div>
</td>
</tr>
<tr>
<td height="20"> </td>
</tr>
<tr>
<td height="20" >
<table width="65%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="100">
<div align="left">
<form name="form" method="post" onSubmit="return check_com()" ACTION='/blog_article/okey.html'>
<? if ($usename==1) //前面检查时如果没找到信息,则给$usename赋值为1,这里,用来判断是否需要用户身份校验。
{
echo "用户名:<input text' name='username' maxlength='8' size='20'> 如果你还未注册,就来<a href='reguse.php?action=xy'>这里注册</a><br>";
echo "密 码:<input password' name='userpass' size='20' maxlength='8'> 忘了密码来这里<a href='/blog_article/useinfo/c/pass.html'>取回密码</a>!<p>";
}
?>
<div align="center">主 题:<input type="text" name="title" size="40" maxlength="20"></div><br>
<div align="center">帖子内容<br>
<textarea name="message" wrap="VIRTUAL" cols="75" rows="10"></textarea>
<input type="submit" name="Submit" value="好了!提交" onClick="return checkSubmit()"> <input type="reset" name="Submit2" value="擦了!重写">
</div>
</form>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr bgcolor="#009999">
<td height="20"> </td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>论坛发帖</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE type=text/css>
P {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
DIV {FONT-FAMILY: normal; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
</STYLE>
<?
include "linkfox.inc.php";
include "info.inc.php";
?>
<LINK href="/blog_article/js/cpcw.css" rel=stylesheet /LINK>
</head>
<body bgcolor="#FFFFFF">
<?
$tem=$HTTP_COOKIE_VARS[FlyFoxNet]; //取COOKIE信息
$temp=explode("|",$tem);
$cookiem=$temp[0];
$useinfo=cuser($cookiem,$action);
if ($useinfo[2]=="游客") $usename=1;
?>
<table width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td height="40" rowspan="2" width="60%">
<div align="right"></div>
<div align="right"></div>
</td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
<td height="20" width="10%"> </td>
</tr>
<tr>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/top_register.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/useinfo/action/find.html"><img src="/blog_article/images/top_members.gif" width="74" height="21" border="0"></a></div>
</td>
<td height="20" width="10%"><a href="/blog_article/useinfo/action/edit.html"><img src="/blog_article/images/top_profile.gif" width="74" height="21" border="0"></a></td>
<td height="20" width="10%"><a href="/blog_article/okey/d/q.html"><img src="/blog_article/images/top_logout.gif" width="74" height="21" border="0"></a></td>
</tr>
<tr>
<td height="20">
<div align="left">当前位置:<font color="#0000FF">狐网─>狐网论坛─>发布论题</font> <? echo "<font color='00dd00'>".$useinfo[2]."</font>"; ?></div>
</td>
<td height="20">
<div align="center"><a href="foxbbs.php"><img src="/blog_article/images/index.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="superuse.php"><img src="images/super.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/blog_article/reguse/action/xy.html"><img src="/blog_article/images/dl.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
<td height="20" width="10%">
<div align="center"><a href="/index.html"><img src="/blog_article/images/fox.gif" width="70" height="20" border="0" align="middle"></a></div>
</td>
</tr>
</table>
<script language="JavaScript"> //这段JS用来检查表单内信息状态,是不是有点眼熟?呵呵……OSO上CUT下来的了。
<!--
var submitcount=0;
function checkSubmit() {
if (submitcount == 0) {
submitcount++;
return true;
} else {
if (submitcount>0){
alert("帖子已成功提交了,别急,等等!");
return false;
}
}
}
function check_com(){
if(document.form.title.value.length ==0){
submitcount--;
alert("主题不能为空!快填上吧!");
return false;
}
if(document.form.message.value.length == 0){
submitcount--;
alert("OH!SORRY!加贴内容不能为空!");
return false;
}
return true;
}
//-->
</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#009999">
<td height="20"><div align='center'><font color="ffffff">
<? //在前面检查是否用户时给$USEINFO[0]赋了用户信息。
if ($useinfo[0]) echo "<font color='00ff00'>[".$useinfo[2]."]</font> 你好!请在下面填写你的贴子。";
else echo "<font color='00ff00'>".$useinfo[2]."</font>你好,请先登录,再发帖,如果你还未注册,请先注册吧!";
?></font></div>
</td>
</tr>
<tr>
<td height="20"> </td>
</tr>
<tr>
<td height="20" >
<table width="65%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="100">
<div align="left">
<form name="form" method="post" onSubmit="return check_com()" ACTION='/blog_article/okey.html'>
<? if ($usename==1) //前面检查时如果没找到信息,则给$usename赋值为1,这里,用来判断是否需要用户身份校验。
{
echo "用户名:<input text' name='username' maxlength='8' size='20'> 如果你还未注册,就来<a href='reguse.php?action=xy'>这里注册</a><br>";
echo "密 码:<input password' name='userpass' size='20' maxlength='8'> 忘了密码来这里<a href='/blog_article/useinfo/c/pass.html'>取回密码</a>!<p>";
}
?>
<div align="center">主 题:<input type="text" name="title" size="40" maxlength="20"></div><br>
<div align="center">帖子内容<br>
<textarea name="message" wrap="VIRTUAL" cols="75" rows="10"></textarea>
<input type="submit" name="Submit" value="好了!提交" onClick="return checkSubmit()"> <input type="reset" name="Submit2" value="擦了!重写">
</div>
</form>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr bgcolor="#009999">
<td height="20"> </td>
</tr>
</table>
</body>
</html>
最新技术文章: