我有下一个mysql查询:
$productn = $jdb->query('SELECT t2.title FROM '.DB_PREFIX.'shopping_cart AS t1 LEFT JOIN '.DB_PREFIX.'shop_order_details AS t2 ON t1.shopid WHERE t1.session = "'.smartsql($_SESSION['shopping_cart']).'"');
while ($rowp = $productn->fetch_assoc()) {
// my product title
$productname = $rowp["title"];
}
使用 print_r($productname); 我得到类似的东西:
姓名1姓名1姓名1姓名2姓名2
我想显示类似:
3 x 名称1 2 x 名称2
或者
3 x 名称 1、2 x 名称 2
有可能做到这一点吗?