05-17-2008, 03:15 AM
|
#3 (permalink)
|
|
The Contributor
Join Date: Apr 2008
Posts: 78
Thanks: 0
|
Thanks for the reply. I had played around with that but doesn't that mean I would have to name each item in the array, something like this
PHP Code:
foreach($some_array as $idx => $val)
{
$some_array[$idx][0] = 'new value';
$some_array[$idx][10] = 'new value';
}
I was hoping there would be a more generic way to do it since that is going to cause problems as the code grows and changes.
|
|
|
|