Thread
:
how insert value inner array
View Single Post
#
1
(
permalink
)
04-29-2008
nawfer
Posts: n/a
how insert value inner array
if this work
$var0['list'] = array(
'type1' => 'val1',
'type2' => 'val2',
'type3' => 'val3'
);
is possible to have this:
$var0['list'] = array(
'type1' => 'val1',
'type2' => 'type3' => 'val2-3'
);
which is correct code ?
nawfer