我現在有以下數組,PHP/Mysql使用現有數組中的值創建一個新數組,幫助?
Array (1) 0 => Array (5) productid => 1 qty => 1 materialid => 12
和我有以下兩個查詢其是
select name as productname, price from products where productid=1
和
select name from materials where materialid=12
我需要這些查詢鏈接,使得陣列輸出是這樣或類似的:
Array (1) 0 => Array (5) productid => 1 qty => 1 materialid => 12 productname => Toothbrush price => £3.00
這基本上是將內容輸出到購物籃頁面。請注意,查詢無法連接,因爲兩個表上沒有任何連接。
謝謝
[PHP的array_merge(http://php.net/manual/en /function.array-merge.php)可以爲你做這個 –
輸出數組不包含來自第二個查詢的數據,只包含來自第一個查詢的產品名稱和價格。 – Kwebble