I have a post array like below:
[quantity] => Array
(
[5] => 10
[23] => 20
)
[price] => Array
(
[5] => 100.00 $
[23] => 200.00 $
)
[amount] => Array
(
[5] => 1,000.00 $
[23] => 4,000.00 $
)
5 and 23 are id of product. And i need to convert it to :
[5] => Array
(
[quantity] => 10
[price] => 100.00 $
[amount] => 1,000.00 USD
)
[23] = => Array
(
[quantity] => 20
[price] => 200.00 $
[amount] => 4,000.00 USD
)
How can i achieve this efficiently so that they can be ready for mysql insert?
foreach ($post as $input_key => $input_values) { foreach ($input_values as $field => $value) { $tmp[$field][$input_key] = $value; } }and frankly it works but I just want to know if it is the best way. – yahyaE Apr 12 '12 at 7:09