如何将fckeditor添加到php中动态创建的表单中?
我正在 php 中创建一个动态表单。我想将 fckeditor 添加到这个动态表单中。 那么关于将 fckeditor 添加到 php 中动态创建表单的想法吗???
那么我如何从 fckeditor 发布值。这是我的实际问题
当我使用其 value 属性静态地将文本分配给 fckeditor 时,它会将其存储在数据库中,但是当我在执行后在 fckeditor 中输入文本时,它不会将其保存在数据库中。
问题是什么?
I am creating a dynamic form in php. And i want to add fckeditor to this dynamic form.
so any idea about to add fckeditor to a dynamically creating form in php???
So how can i post values from the fckeditor. That is my actual problem
When i assign text to fckeditor statically using its value property then it stores that in database but when i entered text in fckeditor after execution then it does not save it in database.
What is the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的网页上添加了fckeditor吗?你不知道如何发布表单值并保存到 mysql 数据库吗?
你必须发布 fckeditor 值然后保存到 mysql 数据库
have you added fckeditor on your web page? don't you know how to post form values and save to mysql database?
you have to post fckeditor value then save to mysql database
@Ahmwad Nawaz:我使用 CKEditor (FCKEditor 的下一版本)的 jQuery 插件。请参阅此处的用法: http://www.fyneworks.com/jquery/CKEditor/#tab -用法。
如果您仍然希望在 PHP 中创建并实例化
textarea
,当您下载编辑器时,它应该包含一个_samples
目录,并在其中包含一个php
目录中包含几个示例,向您展示如何操作。@Ahmwad Nawaz: I use the jQuery plugin for CKEditor (next version of FCKEditor). See usage here: http://www.fyneworks.com/jquery/CKEditor/#tab-Usage.
If you still wish to create and instantiate the
textarea
within PHP, when you download the editor it should contain a_samples
directory and within that aphp
directory with several samples in it to show you how to do it.