On Wed, Oct 15, 2003 at 03:41:01AM -0500, Gabriel Peugnet wrote: : : I want to convert : [EMAIL PROTECTED] : into : (a href='mailto:[EMAIL PROTECTED]') [EMAIL PROTECTED] (/a) : : (I sustitued tags with parenthesis) : : It's a little tedious makeing the function.
Nah.
function emaillink($url)
{
$email = htmlentities($email);
return '<a href=\'mailto:' . $email . '\'>' . $email . '</a>';
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

