it's not the php code, it's html code.
<a href="http://www.name.com">Link here</a>
In php, you can either echo that link, or print that link to the page:
<?
echo "<a href=\"http://www.name.com\">Link here</a>";
?>
or
<?
print "<a href=\"http://www.name.com\">Link here</a>";
?>