How do I strip the HTML tags from a variable and leave the link? I am trying to send emails with the link but without the tags. I've tried strip_tags(), but it removes the link.
$var = "this is a link <a href="mylink"/>yes it is</a>;
$message ="$var"; // email massage
How would I go about making it into "this is a link mylink yes it is"?