Does anyone know how to use the print or echo command to display a hyperlink? My code that's giving me an error looks like this:
<?
if ($id == 0) {
print "Not Available";
}
else {
print "<a href="http://www.link.com=$id">$id</a>";
}
?>
TIA for any help.