SoFunction
Updated on 2025-04-04

A PHP Forum Program that imitates OSO (one) page 1/2

I often use OSo forums, and I personally feel that it is quite good, so I imitated the OSo interface and compiled a program to share with everyone.
The program consists of three parts, namely displaying topic information, displaying forum information, adding forum information, and using a master-slave table relationship between the topic and forum content.
The table structure is as follows:
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','number of pages','20'); /* Adjust this parameter to modify the number of rows per page*/

Program 1:
<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>Forum</title>
</head> 

<body bgcolor="#C0C0C0" background=""> 

<? 
  include ("c:"); 
?> 

<table width="100%" border="0"> 
<tr class="text">  
<td width="50%">   <div align="left">Current location: Home page—Forum</div> </td>
<td width="20%">   <div align="center">&nbsp</div> </td> 
<td width="10%">   <div align="center"> 
<A href="" target=_blank>Member Registration</A></div> </td>
<td width="10%">   <div align="center">Forum Search</div> </td>      <div align="center">Forum Search</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','number of pages','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 "Number of topics: ".$rcount."  Number of posts: ".$rcon_count;
    print '<td width="35%">  <div align="right"> '; 
print '<a href="?theme_id=0" target="_top"><img src="" alt="Add a new post" border="0"></a>';
    print '<td width="15%">   </td>'; 
    print '</td></table>'; 


$pages=ceil($rcount / $pageline); //The $pages variable now contains the required number of pages

    if (empty($offset))  { 
      $offset=1;   
      $curline = 0; 
    } else 
    $curline = ($offset - 1) * $pageline; 
//Print the header
print '<table width="100%" border="0">'; 
print '<tr class="text"> <td width="50%">  <div align="center">'; 
if ($offset <> 1) { //If the offset is 0, the link from the previous page will not be displayed
  $newoffset=$offset - 1;   
print "<a href='$PHP_SELF?offset=$newoffset'>Previous page</a>";
}  else { 
print "Previous page";
print "   "; 

//Calculate the total number of pages required
$pages=ceil($rcount/$pageline); //The $pages variable now contains the required number of pages
12Next pageRead the full text