关于$FCKeditor的值,请帮帮我,我真的很急啊

2016-07-07 15:30 来源:www.chinab4c.com 作者:ecshop专家

我在添加商品时,增加一个“特殊说明”字段,要求页面和“详细描述”一样,
我也在数据库中加入了“特殊说明”字段goods_spec,
同时我在admin\templates\goods_info.htm中添加了
<span class="tab-back" id="gallery-tab">{$lang.tab_gallery}</span>
<span class="tab-back" id="linkgoods-tab">{$lang.tab_linkgoods}</span>{if $code eq ''}
<span class="tab-back" id="groupgoods-tab">{$lang.tab_groupgoods}</span>{/if}
<span class="tab-back" id="article-tab">{$lang.tab_article}</span>
<span class="tab-back" id="special-tab">特殊说明</span>注,我把id改为special-tab

还在goods_info.htm中添加了

<!-- 详细描述 -->
<table width="90%" id="detail-table" style="display:none">
<tr>
<td>{$FCKeditor}</td>
</tr>
</table>

<!-- 特殊说明-->
<table width="90%" id="special-table" style="display:none">
<tr>
<td>{$FCKeditor}</td>
</tr>
</table>




我php文件未改,现在我弄不懂$FCKeditor,我只改这些,在添加商品时(没有添加“特殊说明”),居然连详细描述也添加不了了,为什么$FCKeditor输入的内容就是指“详细描述”的字段,它们是在哪里设置的?
请高手们帮帮忙,我想知道$FCKeditor的赋值,帮帮我吧,我是新手新手新新手,让我尽快完成"特殊说明",谢谢了

回答:
include_once(ROOT_PATH . 'includes/fckeditor/fckeditor.php');先引入fckeditor文件
然后 create_html_editor('goods_spec','回填内容');创建fckeditor
第一个控件名字 第二个是回填内容

2# myareaway


请问高手,在admin\goods.php中设置会不会和“详细描述”的冲突啊,我就是很模糊啊,关键是它那个“详细描述”怎么设置的,它执行插入修改时,怎么会出现'$_POST[goods_desc]',怎么出来的???????急啊

admin/goods.php这个文件也要添加。
找到“/* 创建 html editor */”改为 下面的
/* 创建 html editor */
create_html_editor('goods_desc', $goods['goods_desc']);
create_html_editor('good_spec', $goods['good_spec'], true);
另外,还有一个includes里的文件也要改,具体想不起是哪一个了

4# cd701
大哥或者大姐,您可一定要想起来啊

还是不行啊,怎么回事啊,还是那样,连“详细描述”都添加不了,
create_html_editor('goods_desc', $goods['goods_desc']);
create_html_editor('good_spec', $goods['good_spec'], true);

对于上面这两行,我很不理解$goods['goods_desc'],在html页面中并没有设置属性啊,它是怎么得到的???
好急啊,好急啊

我也想知道。同求解答。