С AJAX Я отправляю сериализованный массив на PHP. Массив выглядит так:
Array
(
['product1'] => Array
(
['price'] => 12.50
['stock'] => onstock
)
['product2'] => Array
(
['price'] => 22.95
['stock'] => outofstock
)
['product3'] => Array
(
['price'] => 110.00
['stock'] => outofstock
)
)
Я ищу foreach l oop и выводим данные
<?php
$output .= '<div class="price"></div>';//set price here
$output .= '<div class="text">Stockstatus below</div>'
$output .= '<div class="stockstatus"></div>';//set stocks here
echo $output;
?>
Кто может мне помочь с этим?
I попробовал это
<?php
$output = $_GET['products'];
foreach($output as $products => $value){
$price = $value['price'];
$stock = $value['stock'];
}
?>