$pages = array(
'another_page' => array(
$title = 'Another Title',
$keyword = 'some more keywords',
$description = 'A better description.'
),
Re the above array, the element at position '0' of $pages[$page] is not called 'title'
That sub array is an indexed array, not an associative array
so you can't do this:
<?php echo $pages[$page]['title'];?>
what you can do is
<?php echo $pages[$page][0];?>
alternately you could build the sub array with => operator
no idea if that fixes the errors !
//or better put by Brad G as I forgot to write about the variable in there