Thanks for the advice. I understand that when I enter an article into my database, I could just wrap the link in <a href>, but I thought there would be soem sort of function out there that could recognize hyperlinks for me...that's why I asked. Here is an example of coding where I would using it:
$id = $_GET['id'];//get id
$query = "SELECT title, story, DATE_FORMAT(date_add, '%d %M %Y, %l:%i %p') AS da, news_id FROM news WHERE news_id = '$id'";//query to get title, story and date of article refering for $id
$result = mysql_query($query);
$row = mysql_fetch_array($result);
echo "<h1>News Archive</h1>\n
<h2>{$row['title']}</h2>\n
<p>".nl2br($row['story'])."</p><br/>\n
<p class=\"emph\" align=\"right\">{$row['da']}</p>\n";//echo out results
mysql_free_result($result);