您不需要
json_depre此JSON,因为它已成为对象。
删除此部分:
$directions = json_depre($_POST['json']);var_dump(directions); // here's an error btw
并将其更改为:
$directions = $_POST['json'];
然后只需将其保存为文本模式即可。
不要忘记逃避它:
$sql = "INSERT INTO c_map (ref_num, members_id, title, description, ingredients) VALUES (NULL, '$session_id', 'title', 'description', '".mysql_real_escape_string($directions)."');";
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)