为什么富文本编辑器无法显示及插入数据无法正确插入数据库
<?php include '../../common/view/kindeditor.html.php';?>
视图文件里面加入这行
并申明的HTML
<tr>
<th class='rowhead'><?php echo $lang->topic->content;?></th>
<td><?php echo html::textarea('content', '', "rows='8' class='area-1'");?></td>
</tr>
为什么视图没有显示。
在Model文件里面,如下语句:
$topic = fixer::input('post')
->setDefault('forumID', 1)
->setDefault('addedBy', $this->app->user->account)
->setDefault('addedDate', helper::now())
->setDefault('editedBy', $this->app->user->account)
->setDefault('editedDate', helper::now())
->setDefault('deleted', '0');
a($topic);
echo TABLE_TOPIC;
//exit;
$this->dao->insert(TABLE_TOPIC)
->data($topic)->exec();
return $this->dao->lastInsertID();
不报错,但是数据库也插入不了数据,求助,求助。
我在php目录下的logs下查找是空的,Apache的日志里面也没查到此信息。
我用的是网站上提供的一键安装环境。





精品资料包
1V1产品演示
免费试用增强功能
专属顾问答疑支持


