View Single Post
Old 08-17-2009, 08:44 AM   #1 (permalink)
PiEhPi
The Wanderer
 
Join Date: Jul 2009
Posts: 5
Thanks: 5
PiEhPi is on a distinguished road
Help $ary['x']= array('a'=>'y')... VS $ary['x']['a']= y...

Hi,
What is difference/better between:

PHP Code:
$ary['x']= array('a'=>11111'b'=>22222'c'=>33333... );

VS

$ary
['x']['a']= 11111;
$ary['x']['b']= 22222;
$ary['x']['c']= 33333;
... 
? :)
Thanks for help.
PiEhPi is offline  
Reply With Quote