My boss wants me to make a page designed for selling a list of urls he has in a database. He wants the url listed with a description and then a page where someone can make an offer on said url. My problem as of now is that i can get the urls and descriptions to be listed however the urls are not hyperlinks. I cant seem to figure out how to turn them into hyperlinks. Here is the code i am currently using without my failed attempts of making hyperlinks added in.
<?php
$con = mysql_connect("host","user","pword");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM Information");
echo "<table border='1'>
<tr>
<th>Url</th>
<th>Description</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row["url"] . " " . "</td>";
echo "<td>" . $row['desc'] . "</td>";
echo "<br />";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>