I have the following JSON
[
{
"part_number": {
"id": "1",
"text": "962-00031-17A004"
},
"categoria": null,
"codigo_cti": "",
"fabricante": null,
"modelo": null,
"numero_serie": "",
"obs": ""
}
]
And I use the code bellow to collect data from it. If I select to extract obs, it works fine. I would like to know how can I collect the text and ID from part_number.
$produtos = json_decode($_POST['produtos'], true);
foreach($produtos as $produto){
echo $produto["obs"]; //WORKS FINE
echo $produto["part_number"]["text"]; //DOES NOT WORK
}