Simple, it must be, but I don't know how ...
I want to say that at the EOF, don't add '|' to the page, please. (It's for the global nav. )
The code
$result = @("SELECT CONCAT('<li> <a href=\"', Link, '\">', Named, '</a> | </li>') AS gn FROM GlobalFront ORDER BY GlobID");
if (!$result) {
exit('<p>Error performing query: ' .
mysql_error() . '</p>'
);
}
while ($row = mysql_fetch_array($result)) {
echo $row['gn'];
}
echo '</ul>';