Hi i have a database of email addresses and i need them to display on the web page as email links. i.e mailto:whoever@whatever.com
How would i achieve this?
thanks.
something like :
While (you have email records) { echo "<a href=\"mailto:$CurrentEmail\">$CurrentName</a>"; }
first, just try :
echo "<a href=\"mailto:hi.guy@world.space\">Click Email Address</a>";