With text or variables its the same thing. To make a text link:
<a href=http://www.yourpage.com>Your Page</a>
Take this and apply it to variables. All a variable is is text represented by $variable_name
<?
$url = $row_Recordset1['url'];
echo "<a href=" . $url . ">" . $url . "</a>";
?>
If $url is equal to [url]http://www.yahoo.com,[/url] then this will output (in html)
<a href=http://www.yahoo.com>http://www.yahoo.com</a>
What's not working? Works for me. The only thing I can see that wouldn't work is if your variable has no value. If you echo your variable $row_Recordset1['url'] and it displays properly, then the above code will work. If it doesn't echo properly, then your first problem is figuring out why it's not.
Cgraz