I can't figure out why this code
doesn't work. I'm using a double quote
echo so the parser should be able
to display a link to pagetwo.php.
$test = array ( 'Main' => 'index.php',
'Two' => 'pagetwo.php',
'Three' => 'pagethree.php
);
echo "<a href = \" $test['Two'] \">Page Two</a>";
I'm getting a notice saying, "Undefined index."
Any help would be appreciated