Link to home
Start Free TrialLog in
Avatar of genesisvh
genesisvh

asked on

How do you make an echoed email linkable

I would like to make this echoed email as a link so anyone can click it and email that person.
echo "<td bgcolor='#FFFFFF' style='color: #000' align='center'> Provider's E-Mail: ".$result['email']."<br /></td>";

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Rik-Legger
Rik-Legger
Flag of undefined image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of genesisvh
genesisvh

ASKER

I think there is a syntax error in this Rik.
Found the error
THANKS
echo "<td bgcolor='#FFFFFF' style='color: #000' align='center'> Provider's E-Mail: <a href= mailto:".$result['email'].">".$result['email']."</a><br /></td>";

Open in new window

Thanks