如何从水银编辑器保存到php数据库

时间:2013-03-28 13:55:51

标签: php jquery editor mercury-editor

我正在使用水银编辑器(非导轨)开发内容管理系统。 但问题是我不知道如何保存来自水银编辑器的JSON字符串。

这是编辑提供的JSON字符串。

{
"get_title": {
"type": "simple",
"data": {},
"value": "skdhfzsd"
},
"title": {
"type": "simple",
"data": {},
"value": "This is a test page"
},
"content": {
"type": "full",
"data": {},
"value": "<p>What is this kind of page ?</p><p>Well this is my cool test page to try out different stuff.</p><p><a href=\"http://www.domeinz.nl\" target=\"_blank\">Woot</a></p><p><iframe style=\"width: 560px; height: 349px;\" src=\"http://www.youtube.com/embed/ixifxQ_MDu4?wmode=transparent\" frameborder=\"0\" allowfullscreen=\"true\"></iframe><br></p><p><iframe style=\"width: 400px; height: 225px;\" src=\"http://player.vimeo.com/video/22193086?title=1&byline=1&portrait=0&color=ffffff\" frameborder=\"0\"></iframe><br></p><p>☃ ©</p><p><br></p>",
"snippets": {}
}
}

问题是我不知道如何将它保存到我的save.php文件以及如何获取请求。

Greets wouter。

1 个答案:

答案 0 :(得分:0)

您应该将此json字符串发送到PHP文件(它基本上是一个数组)。

然后,PHP文件可以处理信息并将其插入数据库。

不要害怕如何处理结果。尝试执行print_r($ _ GET)或print_r($ _ POST),您将在php文件中看到编辑器发送给您的确切信息。

应该使PHP文件以与任何其他表单发送信息完全相同的方式处理信息,这就是这个编辑器的美妙之处。