hey everyone,
actually i am creating a website in which data is queried from mysql. in mysql table one of the attributes is in form of hyperlink. When i am displaying the result it is in normal text but i want a hyperlink as the result is displayed so please help me.
Example
<?php
echo "Please enter a genename";
$Genename = mysql_real_escape_string($_POST['name']);
$ID= mysql_query("SELECT ID FROM database.nodefinal WHERE Genename='$Genename'");
$ID = mysql_result($ID, 0);
echo "gene ID= $ID";
?>
but id is a webaddress so i want the result such that when i click on the id i can reach the webpage to which it is linked.