php – 将html内容插入mysql表

我需要将html内容插入mysql table.but脚本切割部分html内容.Html内容如下.div data-plugin-lightbox data-plugin-options={delegate: a, type: image, gallery: {enabled: true}} 我无法上传所有co...

我需要将html内容插入mysql table.but脚本切割部分html内容.
Html内容如下.

        <div data-plugin-lightbox data-plugin-options='{"delegate": "a", "type": "image", "gallery": {"enabled": true}}'>

 

我无法上传所有content.mysql表了
只要

 <div data-plugin-lightbox data-plugin-options={"

如何将任何html内容插入mysql表.

解决方法:

似乎与双引号相关的问题..你应该逃避json的双引号

<div data-plugin-lightbox data-plugin-options='{\"delegate\": \"a\", \"type\":    .......

或者问题可能与你在php中的字符串赋值有关

分配

$sql = "< <div data-plugin-lightbox data-plugin-options='{"delegate": " 

打破第二个双引号

本文标题为:php – 将html内容插入mysql表

基础教程推荐