I am trying to display a link for an email field using a database field from mySQL. When I try to use the link it is blowing up because there are quotes around the email-address in the mailto: link. How do I get rid of these quotes????
Actual code for the mailto link is as follows:
echo "<a href=mailto:\"$repemail1\">e-mail rep</a>";
where $repemail1 has been set using the database field.
Thanks in advance!!!!