ckeditor,创建php文件存储在MySql中
我正在使用 CKeditor,但我没有弄清楚如何创建在 MySql DB 中存储编辑文本区域的 php 文件。 我是 php/mysql 的新手.. CKeditor调用的javascript代码是:
$(’#my_div’).ckeip({
e_url: ’test.php’,
data: {
example_var : ’example_value’,
example_var2 : ’example_value2’
}
)};
我必须在test.php中编写什么才能使其将ckeditor的数据存储在MySql中? 我应该先在数据库中创建一个新表吗?
多谢
I'm using CKeditor but I'm not working out how to create the php file that stores editing textareas in MySql DB.
I'm quite newbie in php/mysql..
javascript code of CKeditor calls is:
$(’#my_div’).ckeip({
e_url: ’test.php’,
data: {
example_var : ’example_value’,
example_var2 : ’example_value2’
}
)};
What I have to write in test.php to making it store data of ckeditor in MySql?
Should I create a new table in database first ?
thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为处理这个问题的最佳方法是创建一个包含两列的新 MYSQL 表。一个作为文本区域的 ID,另一列用于存储文本。有关 MYSQL 和 PHP 的基本教程请查看 W3School http://www.w3schools.com/PHP/ php_mysql_intro.asp
I think the best way to handle this is create a new MYSQL table with two columns. One as an id for the textarea and then the other column to store the text. For a basic tutorial about MYSQL and PHP check out W3School http://www.w3schools.com/PHP/php_mysql_intro.asp
我也是 CKEditor 的新手。但是,一旦您将编辑器中的数据放入 JavaScript 变量中,似乎就很容易了,例如:
然后您可以将 editorData 放入隐藏的输入字段中,然后将其提交到您要创建的 PHP 文件。在该 PHP 文件上,您可以使用以下内容:
I am a newbie to CKEditor, too. But it seems like it would be quite easy once you get the data from the editor into a javascript variable, like:
You can then put editorData into a hidden input field and then submit it to the PHP file that you're going to create. On that PHP file you would take it with something like: