My array has some values
0 => '1'
1 => 'moisturizer'
2 => 'skincare'
I am trying to convert that array to string, I am currently using json_encode
$value = array_shift( $val_ary ); //val_ary is that array
echo json_encode($value); // This will echo my data like
["1","moisturizer","skincare"]
later I would like to insert those values in my mysql db table
mysql_query("INSERT INTO TABLE (sno, type, category)
VALUES ('json_encode($value)')");
Should this work?
Or shall I json_decode before I insert in db?
snofield and leaving type/category undefined. – Marc B Dec 6 '12 at 15:36