Tom Shaw wrote:
My array looks very similar to this. I need to create a single row for the
items that have the same order number for CSV export.  I'd prefer to do this
PHP wise instead of SQL. But would appreciate any help I can get.


$ar = array(

   array(

     "order_id" => "34",

     "order_number" => "35Y345Y356YU3",

     "order_name" => "Steinway Grand Piano #11",

     "order_ordered_size" => "Grand",

     "order_sales_price" => "78671.90",

     "order_shipping_price" => "7.85",

     "order_shipping_extra" => "0.06",

   ),

   array(
...

A single row of *what*? The order_ids? The order_names? Perhaps you should post an example of the outcome you're looking for.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to