ckeditor,创建php文件存储在MySql中

发布于 2024-10-20 04:31:15 字数 331 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小苏打饼 2024-10-27 04:31:15

我认为处理这个问题的最佳方法是创建一个包含两列的新 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

红墙和绿瓦 2024-10-27 04:31:15

我也是 CKEditor 的新手。但是,一旦您将编辑器中的数据放入 JavaScript 变量中,似乎就很容易了,例如:

var editorData = $('my_div').ckeditorGet().getData();

然后您可以将 editorData 放入隐藏的输入字段中,然后将其提交到您要创建的 PHP 文件。在该 PHP 文件上,您可以使用以下内容:

$theData = $_GET["name_of_the_hidden_input_field"];
//here comes the PHP code for inserting $theData into mysql

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:

var editorData = $('my_div').ckeditorGet().getData();

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:

$theData = $_GET["name_of_the_hidden_input_field"];
//here comes the PHP code for inserting $theData into mysql
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文