..whats the equivalent of an html email (<a href="mailto:ewewe@yahoo.com"> link in php. I have a complete php web page and I need to include email links. Pliz help. I hv tried googling but I'm about to go nuts. thanks hey!!!
is this permissible : <a href="mailto:<?php $email; ?>">email</a>
How do i create an email link in PHP?
Moderator: General Moderators
- andym01480
- Forum Contributor
- Posts: 390
- Joined: Wed Apr 19, 2006 5:01 pm
Re: How do i create an email link in PHP?
Code: Select all
<a href="mailto:<?php echo $email; ?>">email</a>