I am trying to parse values from an array using PHP. When I dump the output this is what I am seeing. In the case of [25] these are automatic IDs being generated from the application which I cannot change. How would I extract the value for "product" and "customer_name". Any suggestions how to get the values when there is an ever changing id being generated?
Array ( [0] => Array ( [25] => Array ( [product] => ABC product [customer_name] => jemmyzre testermaner [customer_email] => mtesterman@aol.comz ) [26] => Array ( [product] => CDE Product [customer_name] => jim smitherstein [customer_email] => jimsither@ewz.com ) [] => ) )