一个模仿oso的php论坛程序源码(之三)第1/2页_PHP教程

WBOY
풀어 주다: 2016-07-21 15:56:28
원래의
804명이 탐색했습니다.

程序三:readforum.php 
 

 
 论坛信息  
 
 
 
 
 
 
 
 
 
 
 
  include ("c:mydbheader.inc"); 
?> 
//完成功能: 
//echo $username; 
//echo $useremail; 
//echo $userhttp; 
//echo $forumtitle; 
//echo $fouumface; 
//echo $forumcontent;  
//echo $theme_id; 
echo 'g_username:'.$GLOBALS["g_username"].' is ok'; 
$dbh = mysql_connect('localhost:3306','root',''); 
mysql_select_db('test');  
if (empty($readflag)) { 
   $readflag = 0; 
}  
if ($readflag > 0) { 
   $theme_id = $readflag; 

if (empty($theme_id)) { 
   $theme_id = 0; 
}  
//echo $username; 
//echo $useremail; 
//echo $userhttp; 
//echo $forumtitle; 
//echo $fouumface; 
//echo $forumcontent;  
if (($readflag == 0) and ($theme_id == 0)) {   //增加数据 
    if (empty($username)) { 
       print "错误,请核对数据"; 
    } 
     $res=mysql_query("SELECT max(id) + 1 AS rid FROM fr_t_forumtitle",$dbh);   
    $row=mysql_fetch_array($res); 
    if (empty($row["rid"])) { 
       $theme_id = 1;   
    } else { 
      $theme_id = $row["rid"] + 1;   
    } 
    $tempstr = " insert into fr_t_forumtitle(id,state,readcount,replycount,title,"; 
    $tempstr = $tempstr."createman,replytime) "; 
    $tempstr = $tempstr." values(".$theme_id.",'0',0,-1,'".$forumtitle."','".$username."',now());"; 
    $res=mysql_query($tempstr,$dbh); 

if ($readflag == 0 ) { 
    $forumcontent =  nl2br($forumcontent); 
    $tempstr = " insert into fr_t_forumcontent(id,content,replyman,replyemail,"; 
    $tempstr = $tempstr."replyhttp,replytime,replyface)"; 
    $tempstr = $tempstr." values(".$theme_id.",'".$forumcontent."','".$username."','". 
        $useremail."','".$userhttp."',now(),".$forumface.");"; 
    $res=mysql_query($tempstr,$dbh); 
    $tempstr = " update fr_t_forumtitle set readcount = readcount +1,replycount = replycount + 1,"; 
    $tempstr = $tempstr."replytime = now(),replyman ='".$username."' where id=".$theme_id;  
    $res=mysql_query($tempstr,$dbh); 
} else { 
    $tempstr = " update fr_t_forumtitle set readcount = readcount +1 where id =".$theme_id; 
    $res=mysql_query($tempstr,$dbh); 

?> 
 
  
 
 
  
当前位置:主页——论坛——论坛内容
 
  
 
 
 
 
    $tempstr = " select title,readcount,replycount from fr_t_forumtitle where id = ".$theme_id; 
     $res=mysql_query($tempstr,$dbh);   
    $row=mysql_fetch_array($res);   
    $ls_theme_title = $row["title"];   
    $li_readcount   = $row["readcount"];   
    $li_replycount  = $row["replycount"] + 1;   
?> 
 
    
     
     
     
    
主题: 
       
        print $ls_theme_title; 
      ?> 
    
  
      
一个模仿oso的php论坛程序源码(之三)第1/2页_PHP教程
 
    
  
     
      print ''; 
    ?> 
    
  
      
一个模仿oso的php论坛程序源码(之三)第1/2页_PHP教程

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/318039.htmlTechArticle程序三:readforum.php HTML HEAD TITLE论坛信息/TITLE linkrel="STYLESHEET"type="text/css"href="fp_zhangcg.css" metahttp-equiv="Content-Type"content="text/html;charset=gb2312"...
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!