I have a json file as follows and I want to upadate showtime showend and showtitle using the show_id as a key (unique value to identify the show values) using a php and html form page with unicode malayalam support
[
{
"day": "Sunday",
"events": [
{
"show_id": "6231",
"show_time": "02:00",
"show_time_end": "03:00",
"show_title": "SundayProgram5"
},
{
"show_id": "6232",
"show_time": "03:00",
"show_time_end": "04:00",
"show_title": "SundayProgram6"
},
{
"show_id": "6234",
"show_time": "04:00",
"show_time_end": "05:00",
"show_title": "SundayProgram7"
},
{
"show_id": "6235",
"show_time": "05:00",
"show_time_end": "06:00",
"show_title": "SundayProgram8"
}
]
}
Don't ask about...section:Questions you haven't tried to find an answer for (show your work!).