I need a little help creating a current page link system that makes the link text bold but not linked. The basic concept is setup like this:
<strong>Link 1</strong> <-----------Current page is bold not linked
<a href="test.php">Link 2</a>
<a href="test2.php">Link 3</a>
<a href="test3.php">Link 4</a>
The pages that I am not currently on needs to have a link tag to link to them, but I want the current page to be just bold with no link tags.
If you can I want to setup my array to hold the data like so:
// Link Name => File Name
$links = array("link-1" => "test.php","link-2" => "test2.php","link-3" => "test3.php");