| Technical notes
The file is turned over with this PHP
call on the internet page:
<? $filename="koordlnk.txt";
include("putmap.php"); ?>
Save the internetsite with .php at end.
Then upload the file putmap.php to the web
server in which the following contents
stand:
<?
$zeile = file($filename);
foreach($zeile as $linkname) {
$array = explode("#",$linkname);
echo "<a target=\"_blank\" href=\"";
echo $array[0];
echo "\">";
echo $array[1];
echo "</a><br>";
}
?> |