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

5年以前  |  阅读数:801 次  |  编程语言:PHP 

程序三:readforum.php

论坛信息 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); } ?>
当前位置:主页――论坛――论坛内容
主题:
加新贴字
'; ?>
主题列表

当前1/2页 12下一页阅读全文

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例