|
本帖最后由 刀客孩哥 于 2011-8-25 16:06 编辑
通过一个表单发新闻
标题表: id,标题,作者
内容表: id,内容,是否通过审核
求入库时的逻辑
我现有逻辑如下:
PHP复制代码
//模型:
//增加标题
function add_title ($title = array)
{
if($this->db->insert('标题表',$title))
{
return insert_id ;
};
}
//更新内容
function update_content ($newsid)
{
$this->db->where(id ,$newsid)->update('内容表',$content);
}
//控制器:
function do_add ()
{
$title = array(
'标题' => $this->input->post('标题'),
'作者' => $this->input->post('作者'),
);
$insert_id = $this->model->add_title($title);
if($insert_id)
{
$this->db->insert('内容表',array($insert_id => newsid ))
if($this->model->update_content($insert_id))
{
echo '增加文章成功!';
}
}
} 复制代码
|
|