Hello,
@bokeh: I think URL links separated by the pipe "|" sumbol (like the ones in your signature)
eg: Home| SiteMap | News | Contact etc..
An example php script that automatically creates the following links:
Visit Home | View SiteMap | Read News | Contact Us
PHP Code:
<?php
//Set your site
$Domain="http://www.yoursite.com/";
//The locations or files in your site
$URIs=array("Home/", "SiteMap.html" , "News/", "Contact.php");
//The visible link-names in your html (or php) doc. What should be between <a href=..> and </a>
$URLS_Descriptions=array("Visit Home", "View SiteMap", "Read News", "Contuct Us");
$Output="";
for ($i=0;$i<count($URIs);$i++) {
$Delimiter=($i<count($URIs)-1)?" | ":""; // The visible separator (here is the "|") of your links.
$Output.='<a href="' .$Domain.$URIs[$i]. '" target="_self" title=" Click to '.$URLS_Descriptions[$i].' ">'.$URLS_Descriptions[$i].'</a> '."\n".$Delimiter;
}
echo $Output."\n<br><br>\n"; //Print the total string (and a couple of newlines)
?>
Kostas
Bookmarks