我经常使用oso的论坛,个人感觉挺好的,因此模仿oso的界面编了一个程序,与大家共享。
程序由三部分组成,即显示主题信息,显示论坛信息,增加论坛信息,主题与论坛内容采用主从表关系。
表结构如下:
drop table fr_t_forumtitle;
create table fr_t_forumtitle(
id integer,
state varchar(1),
readcount integer,
replycount integer,
title varchar(100),
createman varchar(20),
replyman varchar(20),
replytime datetime);
drop table fr_t_forumcontent;
create table fr_t_forumcontent(
id integer,
replyman varchar(20),
replytime datetime,
replyemail varchar(100),
replyhttp varchar(100),
replyface smallint,
content text);
drop table fr_t_parameter;
create table fr_t_parameter(
code varchar(10),
name varchar(40),
content varchar(10));
insert into fr_t_parameter(code,name,content) values('pageline','分页数','20'); / 调整该参数可以修改每页行数 /
程序1:mainforum.php
<?
include ("c:mydbheader.inc");
?>
当前位置:主页――论坛 |
|
论坛搜索 |
|
<?
$dbh = mysql_connect('localhost:3306','root','');
mysql_select_db('test');
$res=mysql_query("SELECT content FROM fr_t_parameter where code = 'pageline'",$dbh);
$row=mysql_fetch_array($res);
global $pageline;
$pageline = $row["content"];
if (empty($pageline)) {
$res=mysql_query("insert into fr_t_parameter(code,name,content) values('pageline','分页数','20')",$dbh);
$row=mysql_fetch_array($res);
$pageline = 20;
}
$res=mysql_query("SELECT COUNT(*) AS rcnt FROM fr_t_forumtitle",$dbh);
$row=mysql_fetch_array($res);
$rcount = $row["rcnt"];
$res=mysql_query("SELECT COUNT(*) AS rcnt_con FROM fr_t_forumcontent",$dbh);
$row=mysql_fetch_array($res);
$rcon_count = $row["rcnt_con"];
print '<table width="100%" border="0">';
print '<tr class="text">';
print '<td width="15%"> </td>';
print '<td width="35%"> <div align="left"> ';
print "主题数:".$rcount." 帖子数:".$rcon_count;
print '<td width="35%"> <div align="right"> ';
print '<a href="addforum.php?theme_id=0" target="_top"><img src="post.gif" alt="加新帖子" border="0"></a>';
print '<td width="15%"> </td>';
print '</td></table>';
$pages=ceil($rcount / $pageline); //$pages变量现在包含所需的页数
if (empty($offset)) {
$offset=1;
$curline = 0;
} else
$curline = ($offset - 1) * $pageline;
//打印表头
print '
';
if ($offset <> 1) { //如果偏移量是0,不显示前一页的链接 $newoffset=$offset - 1; print "前一页"; } else { print "前一页"; print " "; } //计算总共需要的页数 $pages=ceil($rcount/$pageline); //$pages变量现在包含所需的页数 当前1/2页 12下一页阅读全文 相关文章:
PHP
·
发表于 6年以前
·
阅读量:8433
Shell
·
发表于 6年以前
·
阅读量:3428
JAVA
·
发表于 6年以前
·
阅读量:3076
JAVA
·
发表于 6年以前
·
阅读量:3071
JAVA
·
发表于 5年以前
·
阅读量:2902
JAVA
·
发表于 5年以前
·
阅读量:2898
JAVA
·
发表于 6年以前
·
阅读量:2897
JavaScript
·
发表于 4年以前
·
阅读量:2895
Shell
·
发表于 1年以前
·
阅读量:2873
PHP
·
发表于 6年以前
·
阅读量:2839
JAVA
·
发表于 6年以前
·
阅读量:2829
Python
·
发表于 4年以前
·
阅读量:2742
Python
·
发表于 4年以前
·
阅读量:2738
PHP
·
发表于 6年以前
·
阅读量:2578
Shell
·
发表于 6年以前
·
阅读量:2573
PHP
·
发表于 6年以前
·
阅读量:2498
PHP
·
发表于 6年以前
·
阅读量:2485
JAVA
·
发表于 6年以前
·
阅读量:2476
Python
·
发表于 6年以前
·
阅读量:2458
PHP
·
发表于 6年以前
·
阅读量:2439
最新文章
获取php时间戳
4年以前
·
769 次阅读
php获取tempfile路径
4年以前
·
947 次阅读
php 1,1,2,3,5,8,13,21,34...求第30位的数是多少?
4年以前
·
935 次阅读
PHP执行shell
4年以前
·
926 次阅读
PHP获取HTTP body内容
5年以前
·
1222 次阅读
php读取目录下的所有文件
5年以前
·
1032 次阅读
php判断是爬虫在访问还是用户浏览器在访问
5年以前
·
961 次阅读
PHP通过UserAgent识别爬虫
5年以前
·
1056 次阅读
PHP使用curl发起post请求
5年以前
·
1050 次阅读
PHP版HelloWorld
5年以前
·
882 次阅读
最受欢迎文章
PHP分页显示制作详细讲解
6年以前
·
8433 次阅读
PHP自定义函数获取搜索引擎来源关键字的方法
6年以前
·
2839 次阅读
在Zeus Web Server中安装PHP语言支持
6年以前
·
2578 次阅读
Yii2汉字转拼音类的实例代码
6年以前
·
2498 次阅读
再谈PHP中单双引号的区别详解
6年以前
·
2485 次阅读
php封装的page分页类完整实例
6年以前
·
2439 次阅读
php+ajax+json 详解及实例代码
6年以前
·
2344 次阅读
php数组合并array_merge()函数使用注意事项
6年以前
·
2321 次阅读
PHP设计模式之工厂模式与单例模式
6年以前
·
2308 次阅读
PHP实现简单爬虫的方法
6年以前
·
2298 次阅读
|