View Single Post
Old 05-17-2008, 05:43 AM   #4 (permalink)
Kalle
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

You mean something like:

PHP Code:
foreach($some_array as $key => $value)
{
    foreach(
$value as $index => $text)
    {
        
$some_array[$key][$index] = 'new text';
    }

?
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote