I am using this code to output multiple specific values from array and sending these values to email.
If i write this:
print_r( $products[1]['Notes'], true )
Then it is displaying 1 value off course I have put "[1]" to just targeting 1 row.
and If i write this:
print_r( $products, true )
Then it is outputting all the values and all the rows.
Is there anyway i can output just multiple values of "Notes"?