Hi trag,
Thanks for pointing those ones out.
After insterting the changes I get the following:
Parse error: syntax error, unexpected '=' in C:\wamp\www\baturf\include\btmnav.php on line 25
I've been trying to correct with dreamweaver, but to no avail.
Any other ideas?
Here is the full syntax.
PHP Code:
<?php
$urls[] = array('linkURL1', 'linkName1');
$urls[] = array('linkURL2', 'linkName2');
$urls[] = array('linkURL3', 'linkName3');
$urls[] = array('linkURL4', 'linkName4');
?>
<?php
foreach ($urls as $key => $linkSet) {
echo
//below is the problem?
'<a href="'.$linkSet[0].'"'.(($_SESSION['selectedLink'] == $key)? selected="selected":'').'>'.$linkSet[1].'</a>';
}
?>
Bookmarks