How to store simple arrays or json objects in mysql in PHP? This is one of solutions. Use json_encode.
$a = ["a","b","c"];
$jsonstr = json_encode($a);
How to store simple arrays or json objects in mysql in PHP? This is one of solutions. Use json_encode.
$a = ["a","b","c"];
$jsonstr = json_encode($a);