$_SESSION に次の配列が格納されています
[Bookings] => Array
(
[date] => Array
(
[0] => 1/12/2013
[1] => 1/19/2013
[2] => 2/03/2013
)
[price] => Array
(
[0] => 100
[1] => 150
[2] => 120
)
)
ただし、foreach ループを使用して、配列内の両方の値に対して計算を実行したいと考えています。foreach を使用して複数の値に対応する方法を理解できないようです。達成しようとしています。誰でも私を正しい方向に向けてください。
foreach ($_SESSION['Bookings'] as $bookings)
{
myDate = $bookings[date];
myPrice = $bookings[price];
// Some other stuff here
}