Hi,
Thanks for helping. This is my code:
<?php
mysql_pconnect (localhost, username, password);
mysql_select_db (dmname);
$result = mysql_query ("SELECT * FROM test");
if ($row = mysql_fetch_array($result)) {
do {
?>
<a href="<?=$URL;?>">LINK NAME</a> <BR><BR>
<?
} while ($row = mysql_fetch_array($result));
} else {print "Sorry, no records were found!";}
?>
Ok this works and brings up the link but it is not the link in the database.
It brings up the base url where the test script is.
Sorry, can you help with this again.
Justin.