$shopcart_book_name字串這裡需要用.為加的意思
如果foreach的值為字串以+的方式使用會為0
$shopcart_price數字需要用+,
如使用.會以字串的方式去加,如1+1會等於11
在js的世界+是通用的..
$shopcart_book_name;
$shopcart_price;
foreach ($shopcart as $key => $shopcarts) {
$shopcart_book_name = $shopcart_book_name .' '. $shopcarts['book_name'];
$shopcart_price = $shopcart_price + $shopcarts['price'];
}