Accessing associative arrays in PHP

Sauer

New Member
I want to access the index 'memo' in the associative array in PHP below\[code\]$variables["thelistitems"];print_r($variables["thelistitems"]);\[/code\]Output\[code\]Array( [0] => Array ( [productid] => prod:c6dbdd62-dc13-6421-5a94-c8cd871a59d3 [memo] => dummy [taxable] => 0 [unitweight] => 0 [unitcost] => 450.02 [unitprice] => 445.02 [quantity] => 1 )) \[/code\]
 
Back
Top