Home >Backend Development >PHP Tutorial >PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?

PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?

WBOY
WBOYOriginal
2016-06-06 20:19:481323browse

PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?
如图所示,由其它页面提交$_POST['info']文章数据到当前页面,进行权限和栏目的验证或判断后,使用content控制器的add方法提交到数据库?请问应该怎样写?

回复内容:

PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?
如图所示,由其它页面提交$_POST['info']文章数据到当前页面,进行权限和栏目的验证或判断后,使用content控制器的add方法提交到数据库?请问应该怎样写?

<code>//$siteid=1;    
//$categorys = getcache('category_content_'.$siteid,'commons'); //缓存文件

    pc_base::load_model('content_model'); //加载内容模型
    $add_content = new content_model(); //
    $modelid = $categorys[$catid]['modelid']; //获得模型id
    $add_content->set_model($modelid);    //初始化


   $add_content->add_content($info); //$info提交的内容</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn