I am trying to parse the form submitted hidden input text using a foreach loop.
<input type="hidden" id="snippet_tags" name="snippet_tags[]" value="["88","92","96","98"]">
Get this using the following function
$snippet_tags = json_decode($_POST['snippet_tags'], true);
and parse the values using foreach loop
foreach ($snippet_tags as $selectedOption){
$ins_snippet_tag_data = array(
'snippet_id' => $insertDataReturnLastId,
'tag_id' => $selectedOption,
'priority' => 1,
);
$this->Constant_model->insertDataReturnLastId('snippets_tags', $ins_snippet_tag_data);
}
Here the problem is values of tag_id is not saving in database