一個模仿oso的論壇程式(之一)_PHP教程

來源:互聯網
上載者:User
我經常使用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");
?>








當前位置:首頁——論壇  
(做為現在的主流開發語言)" target=_blank>會員註冊
論壇搜尋  



$dbh = MySQL(和PHP搭配之最佳組合)_connect(localhost:3306,root,);
MySQL(和PHP搭配之最佳組合)_select_db(test);

$res=MySQL(和PHP搭配之最佳組合)_query("SELECT content FROM fr_t_parameter where code = pageline",$dbh);
$row=MySQL(和PHP搭配之最佳組合)_fetch_array($res);
global $pageline;
$pageline = $row["content"];

http://www.bkjia.com/PHPjc/509080.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/509080.htmlTechArticle我經常使用oso的論壇,個人感覺挺好的,因此模仿oso的介面編了一個程式,與大家共用。 程式由三部分組成,即顯示主題資訊,顯示論壇信...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.