|
列出文章
|
頁: [1]
|
2
|
支援 / 使用與操作 / 修改方式
|
於: 四月 14, 2005, 01:17:20 下午
|
我的修改方法是,在plog_blogs表加字段blogtype,做了一个plog_blog_category 的表,有3 个字段id ,blogstype,remark.分类表的ID和BLOGS表的blogtype关联,
要改的是注册页面,用户注册BLOG标题时,选择一个分类. 为了初步实现,先修改注册摸版加入 选择博客的分类<select name=blogType>.
在register.php中 class doBlogRegistration 加入var $_blogType; //BLOG类型 function validate() {加入 $this->_blogType = $this->_request->getValue( "blogType" );}
function perform() { 加入$newblogId = $blogs->addBlog( $this->_blogName, $this->_userId, $this->_blogType);}
修改class Blogs的 _fillBlogInformation在 $blogInfo = new BlogInfo(加入 $query_result["blogtype"]) 在function addBlog( $name, $ownerId, $blogType, $about ="" ) 修改class BlogInfo 加入var $_blogType;加入对应的get和 set方法 是不是就可以插入到PLOG_BLOGS表了 不知道为什么就是插不进数据到plog_blogs的blogtype字段
|
|
|
|
|
|