I have a Json string like below I am trying to insert it as row values into the database. so example here there would be two rows inserted into the database with 4 columns The columns being status, filename, mainpic, fullurl I understand the basic idea of what I am looking to do but I need to know how to parse this down By the way my JSON will always be formated this way so no need to worry about how it is formatted
{"status":"success",
"filename":"c3336eab-133d-4e78-ba9a-135152e0cddf.jpg",
"mainpic":"true","fullurl":"../userimages/c3336eab-133d-4e78-ba9a-135152e0cddf.jpg"},
{"status":"success",
"filename":"6dffc7f0-17e2-40c5-ab6d-c380697ae4d8.jpg",
"mainpic":"true","fullurl":"../userimages/6dffc7f0-17e2-40c5-ab6d-c380697ae4d8.jpg"}