Chris Matchett

A blog to remind me how to fix stuff and other tech thoughts…

Archive for July 2009

Display Php Multidimensional array

with 2 comments

foreach($output as $var =>$value )
{
echo “$var\n”;
foreach( $value as $innervalue )
{
echo “$innervalue\n”;
}

}

}

Written by Chris

July 25, 2009 at 1:22 pm

Posted in PHP

Tagged with