Not entirely sure exactly what your asking dicko, but the following function that i use often might help you...
function make_link($destination = "#",$text = "Click Here")
{
print "<a href='".$destination . "'>" . $text . "</a>";
}
If called with
make_link("http://fixtures.myteam.com/","My Teams Fixtures");
then it will insert the following HTML into your document :
<a href='http://fixtures.myteam.com/'>My Teams Fixtures</a>
Which is a standard HTML link tag.
Cheers
Shawty