I'm integrating HTML and PHP to create a table in the browser which displays, among other things, URLs drawn from the .txt file which we use as a database.
How can I tell the browser that the URLs should be hyperlinks?
The code I've got thus far is:
<TD>
<?php
echo $entiredb[$mycount][20];
?>
This pulls the URLs, (which all begin with http:// in our .txt file), but I can't figure out how to make them 'linkable'.
Please help?