Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 14th, 2012  |  syntax: PHP  |  size: 0.78 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //Current Array
  2.                 [products] => Array
  3.                 (
  4.                     [0] => Array
  5.                         (
  6.                             [product] => 8mm GearBox Assembly Ver.2
  7.                         )
  8.  
  9.                     [1] => Array
  10.                         (
  11.                             [price] => 100
  12.                         )
  13.  
  14.                     [2] => Array
  15.                         (
  16.                             [qty] => 2
  17.                         )
  18.  
  19.                 )
  20.  
  21. //Array that I am trying to get
  22.  
  23.                 [products] => Array
  24.                 (
  25.                     [0] => Array
  26.                         (
  27.                             [product] => 8mm GearBox Assembly Ver.2
  28.                             [price] => 100
  29.                             [qty] => 2 
  30.                         )
  31.                 )