当前位置: 首页 > 图文教程 > 网络编程 > PHP > 一个模仿oso的论坛程序(之一)

PHP
利用PHP+JavaScript打造AJAX搜索窗(1)
利用PHP+JavaScript打造AJAX搜索窗(2)
利用PHP+JavaScript打造AJAX搜索窗(3)
利用PHP+JavaScript打造AJAX搜索窗(4)
AJAX 技术在 PHP 中的简单使用(1 )
AJAX 技术在 PHP 中的简单使用(2)
PHP 中使用 crypt() 实现用户身份验证
PHP 下一代的五个 framework 介绍
利用PHP的OOP特性实现数据保护(1 )
利用PHP的OOP特性实现数据保护(2)
利用PHP的OOP特性实现数据保护(3)
小技巧:Windows下PHP与SQL Server的连接
如何利用PHP自定义错误处理器处理出错信息
利用正确的PHP类搜索定位目录树
如何使用PHP和PEAR的Net:Geo定位用户
AJAX应用中浏览器的BACK后退按钮问题
如何用PHP程序控制浏览器cache
PHP入门教程:如何制作一个小桌子
巧用PHP文本模板读取编写XML DOM
PHP实现简单线性回归之数学库重要性

PHP 中的 一个模仿oso的论坛程序(之一)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 85 ::
收藏到网摘: n/a

  我经常使用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
<html>
<head>
<link rel="STYLESHEET" type="text/css" href="fp_zhangcg.css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="Microsoft Theme" content="none">
<meta name="Microsoft Border" content="none">
<title>论坛</title>
</head>

<body bgcolor="#C0C0C0" background="backcolor.GIF">

<?
  include ("c:mydbheader.inc");
?>

<table width="100%" border="0">
<tr class="text">  
<td width="50%">   <div align="left">当前位置:主页——论坛</div> </td>
<td width="20%">   <div align="center">&nbsp</div> </td>
<td width="10%">   <div align="center">
<A href="addmember.php" target=_blank>会员注册</A></div> </td>
<td width="10%">   <div align="center">论坛搜索</div> </td>
<td width="10%">   <div align="center">&nbsp</div> </td>
</table>


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