You can accomplish this with server side includes. php for example
The pages that you want the links to show up should have a php extension.
In a new file, call it links.inc.php - add in your link code
And in the file you want the links to show, add the following code
Quote:
|
<? include("links.inc.php"); ?>
|