$result = mysql_query("SELECT * FROM my_table ORDER BY company_name");
echo "<center><table border='1px' style='font-size: 12px;'>
<center><tr>
<th>Contact Email</th>
</tr></center>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['contact_email'] . "</td>";
echo "</tr>";
}
echo "</table></center>";
I need for the email addresses to be printed out as links so that users can just click on the email address to start an email. Is this possible?