Here is my JSON data :
{ \"Liste_des_produits1\": [{ \"Added_Time\": \"28-Sep-2009 16:35:03\", \"prod_ingredient\": \"sgsdgds\", \"prod_danger
Use json_decode
Then you can access the data as a regular array.
Use json_decode to convert the data to an associative array.
$data = json_decode($jsonString, true); // extend this concept to access other values $prod_ingredient = $prod['Liste_des_produits1'][0]['prod_ingredient'];