View Single Post

  #4 (permalink)  
Old 04-29-2008
Thomas Mlynarczyk
 
Posts: n/a
Default Re: how insert value inner array

nawfer schrieb:

> is possible to have this:
> $var0['list'] = array(
> 'type1' => 'val1',
> 'type2' => 'type3' => 'val2-3'
> );


$var0['list'] = array(
'type1' => 'val1',
'type2' => array( 'type3' => 'val2-3' )
);

Greetings,
Thomas

--
Ce n'est pas parce qu'ils sont nombreux à avoir tort qu'ils ont raison!
(Coluche)
Reply With Quote