I have a foreach loop like so:
$test_array = array(1, 2, 3, 4, 5);
foreach($categories as $category)
{
echo $category; // outputs cat one cat two cat three cat four cat five etc
echo $test_array; // outputs Array Array Array Array Array
}
and this displays fine and dandy.
But I also want to output the test_array array too but when I do, it says 'Array Array Array Array Array Array ' along with my categories :(
How do I get the test_array to display in my foreach loop too?