I'm not sure how you are creating your array, but your resulting array would look something like this:

Array
(
[name1]=>namevalue1
[a1]=>Array
(
[k1]=>value1
[k2]=>value2
)
[name2]=>namevalue2
[a2]=>Array
(...

You end up with a two dimensional array (avoiding the columns term) that contains a name value and a values array for each entry.

On Wednesday, January 22, 2003, at 01:22 PM, David T-G wrote:

Can you show me how? Currently I have

Array
(
[a1] => Array
(
[k1] => value1
[k2] => value2
)
[a2] => Array
(
[k1] => value1
[k2] => value2
)
)

and now I'll want to add a 'name' thingie (I daren't call it a column :-)
so that I can change it at will ... but where and how do I add it?


--
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search & Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to