我有一個array.i需要獲得項目ID檢查數據庫中並獲得製造商。 之後,我需要將每個項目寫入HTML表格,其中爲陣列中的所有制造商創建表格。 示例 這3個陣列中的項目由兩個獨立的製造商製造。 現在我需要與代碼有助於dinamicly爲每個製造商創建表和表中顯示和排序多維數組
[0] => Array
(
[0] => 3 //item id
[1] => 1 //quantity
[2] => efg //some text
[3] => 50 //price
)
[1] => Array
(
[0] => 1
[1] => 1
[2] => bla bla bla
[3] => 10
)
[2] =>數組 ( [0] => 5 [1] =添加相應的項> 1 [2] => ABE [3] => 15 )
什麼問題? – Zbigniew
好吧,明白了。 – deceze