Here is the sample array and I really can't solved it on my own.
I want to add the values of two different array but I really don't know how
Is that possible to add those two values of array??
Here is my sample code that I have used array_sum() but I end up getting only the values(not the sum of the values)
foreach ($_GET['Reservation'] as $key => $value) {
foreach ($value as $key2 => $value2) {
foreach ($value2 as $key3 => $value3) {
echo array_sum($value2);
}
}
}
