您现在的位置: 军旅同心-旅游自驾-军旅文学 >> 读书赏析 >> 学习园地 >> 电脑网络 >> 技术文章 >> 正文
我的论坛源代码(二)
作者:采集员 文章来源:来源于网络 点击数: 更新时间:2005-9-10 14:35:58
主界面,也就是显示主题列表的这页。
//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="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%">&nbsp;</td>
    <td height="20" width="10%">&nbsp;</td>
    <td height="20" width="10%">&nbsp;</td>
    <td height="20" width="10%">&nbsp;</td>
  </tr>
  <tr>
    <td height="20" width="10%">
      <div align="center"><a href="reguse.php?action=xy"><img src="images/top_register.gif" width="74" height="21" border="0"></a></div>
    </td>
    <td height="20" width="10%">
      <div align="center"><a href="useinfo.php?action=find"><img src="images/top_members.gif" width="74" height="21" border="0"></a></div>
    </td>
    <td height="20" width="10%"><a href="useinfo.php?action=edit"><img src="images/top_profile.gif" width="74" height="21" border="0"></a></td>
    <td height="20" width="10%"><a href="okey.php?d=q"><img src="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">狐网─&gt;狐网论坛─&gt;主题列表</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='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"><? if ($action==find) echo "<a href='foxbbs.php'><img src='images/dispall.gif' width='70' height='20' border='0' alt='显示所有贴子列表'></a>"; else echo "<a href='superuse.php'  target='_blank'><img src='images/super.gif' border='0' alt='管理专区,非请莫进'></a>";?></div>
    </td>
    <td height="20" width="10%">
      <div align="center"><a href="reguse.php?action=dl"><img src="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="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;            &nb

[1] [2] [3] [4] 下一页


更多
免责声明:作品版权归所属媒体与作者所有!!本站刊载此文不代表同意其说法或描述,仅为提供更多信息。如果您认为我们侵犯了您的版权,请告知!本站立即删除。有异议请联系我们。
文章录入:烟灰缸    责任编辑:烟灰缸 
  • 上一篇文章:
  • 下一篇文章:
  • 网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    | 设为首页 | 加入收藏 | 联系站长 | 友情链接 | 网站地图 | 版权申明 | 网站公告 | 管理登录 |