😉 This thing is usually called "taxon". You need:
1. Collect data into the array.
2. Display data, using loop.
Here is simple example:
$data = array(array("Link1", "link1.php"), array("Link2", "link2.php"), array("Link3", "link3.php"));
$data_cur = "Link4";
for ($i = 0; $i < count($data); $i++)
echo "<a href=\"" . $data[$i][1] . "\">" . $data[$i][0] . "</a>" . " > ";
echo "<b>" . $data_cur . "</b>";