|
Posted by Manifest Interactive on 02/26/06 08:25
Greetings,
This is the standard syntax to build a PHP array:
$myArray = array('index1' => 'val1', 'index2' => 'val2', 'index3' =>
'val3');
To create a multidimensional array you could use something like this:
$myArray = array("A" => array("a", "b", "c" => array("x")), "B" =>
"y");
Not sure if this is close to what you are looking for
- Peter Schmalfeldt
Manifest Interactive
Navigation:
[Reply to this message]
|