$action is an integer passed in the url, based on what the user selects
$path is a table array which stores info about how to output html blocks, or includes, looks like this:
// content file names
$path[0][0] = 'default';
$path[1][0] = 'who';
// menu colors
$path[0][1] = '#FFFFFF';
$path[1][1] = '#043668';
// sub menus file names
$path[0][2] = 'home';
$path[1][2] = 'who';
I want to use array_key_exists to make sure the interger passed in $action exists in the key of the array $path, but I can't figure out the syntax to do so...
Thanks, d.a.