我们在实际做的过程中很是简单的,希望大家好好研究一下,给补充多点功能。本程序须在php and mysql的环境下运行。有三个文件:comments.php, 是用来显示[评论的, commentadd.php, 用来处理评论内容的, and commentform.html 通过from来提交评论。
1.首先建立一个数据库,如果已经建立则建立一个符合条件的表: create table `comtbl` ( `postid` int not null auto_increment , `posttitle` text not null , `postername` text not null , `posteremail` text not null , `posttime` timestamp not null , `posttxt` text not null , primary key ( `postid` ) );