Home  >  Article  >  Backend Development  >  My forum source code three

My forum source code three

WBOY
WBOYOriginal
2016-07-29 08:33:46917browse

显示主题内容页面。


狐网论坛


include "linkfox.inc.php";
include "info.inc.php";
?>


$query="select * from foxbbs where"; //这个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";
$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;
}
}
?>


  
    
    
    
    
    
  
  
    
    
    
    
     
  
  
    
    
    
    
    
  

      

    
       

      

    

      

    

      

    

      
当前位置:狐网─>狐网论坛─>论题:

    

      

    

      
发布新帖

    

      
回复此贴"; ?>

    

      

    


  
    
  
   
$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 "";
   }
}
?>


      
        
          
          
        
        
          
          
        
        
          
          
        
              

            
原贴作者

          

            
原 贴 内 容

          

            
echo $useinfo[2]."
";
           echo "
";
           echo $useinfo[11]."

";
           echo "发帖数 [".$useinfo["ftnum"]."]
";
          ?>


          
$ft="foxbbs/".$bbsmes[5].".fox"; //取出存放的文件名
$message=@file($ft); //读出文件内容
for ($i=0;$i { if (ord(substr($message[$i],0,1))==161) //第一位是否全角空格
echo $message[$i];
else {
$message[$i]="  ".trim($message[$i]);
echo $message[$i]; //显示主题内容
}
}
?>

            

          

            
if ($useinfo[9]=="不告诉你")
echo "";
          else echo "给我发邮件";
          echo "  我的主页";
          echo "  我的详细信息";
          echo "  修改信息";
          echo "  查找该用户的所以文章";
          echo "  引用该用户的文章回复";
          echo "  ".$bbsmes[11]."";
         ?>

          

    
";
          echo "";
          echo "";
          echo "";
          echo "";
          echo "";
          echo "";
          echo "
回贴作者
回 复 内 容 (第NO.".$x."号)
".$temp[1]."

OICQ:".$temp[2]."
来自:".$temp[6]."
".$temp[0]."
".$temp[7]."
";
          echo "给我发邮件";
          echo "  我的主页";
          echo "  ".$temp[8]."";
          echo "


 

以上就介绍了 我的论坛源代码三,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn