程序三:readforum.php
论坛信息
include ("c:mydbheader.inc");
?>
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;
?>
|
|
print '';
?>
|
当前1/2页 12下一页阅读全文
相关文章:
PHP
·
发表于 5年以前
·
阅读量:8296
Shell
·
发表于 5年以前
·
阅读量:3356
JAVA
·
发表于 5年以前
·
阅读量:3013
JAVA
·
发表于 5年以前
·
阅读量:3004
JAVA
·
发表于 5年以前
·
阅读量:2842
JAVA
·
发表于 5年以前
·
阅读量:2839
JAVA
·
发表于 5年以前
·
阅读量:2835
JavaScript
·
发表于 4年以前
·
阅读量:2830
PHP
·
发表于 5年以前
·
阅读量:2773
JAVA
·
发表于 5年以前
·
阅读量:2768
Shell
·
发表于 1年以前
·
阅读量:2761
Python
·
发表于 4年以前
·
阅读量:2685
Python
·
发表于 4年以前
·
阅读量:2672
PHP
·
发表于 5年以前
·
阅读量:2519
Shell
·
发表于 5年以前
·
阅读量:2511
PHP
·
发表于 5年以前
·
阅读量:2431
PHP
·
发表于 5年以前
·
阅读量:2427
JAVA
·
发表于 5年以前
·
阅读量:2417
Python
·
发表于 5年以前
·
阅读量:2394
PHP
·
发表于 5年以前
·
阅读量:2378
|