jrthor2
03-17-2005, 06:33 AM
I have a bunch of text that comes from a database, and in that text there may be an email address. How can I parse through the text, and if there is an email address, make it a mailto link?
Thanks
[B]UPDATE[B]
I have the following code:
$event_info = trim($_additional_info);
$event_info = str_replace("<event_type>", $_name, $event_info);
$event_info = str_replace("<event_start_date>", $_start_date, $event_info);
$event_info = str_replace("<event_end_date>", $_end_date, $event_info);
$event_info = str_replace("<event_start_time>", $_start_time, $event_info);
$event_info = str_replace("<event_end_time>", $_end_time, $event_info);
$event_info = htmlspecialchars($event_info);
$event_info = preg_replace('#(.*)\@(.*)\.(.*)#','<a href="mailto:\\1@\\2.\\3">\\1@\\2.\\3</a>',$event_info);
The Result that comes back is:
Join the fight by taking steps toward a cure. America's Walk for Diabetes is coming to Twin Lakes Park in Greensburg, PA., on September 25, 2005. Walk as an individual or by forming a team of family, friends and co-workers. To sign up or for more information on the event near you, contact Betty Brdar at bbrdar@diabetes.org or (412)824-1181 x4520. Click here for more information.
The entire sentence with the email address bbrdar@diabetes.org is made a link, and the mailto address is the entire sentence???
Thanks
[B]UPDATE[B]
I have the following code:
$event_info = trim($_additional_info);
$event_info = str_replace("<event_type>", $_name, $event_info);
$event_info = str_replace("<event_start_date>", $_start_date, $event_info);
$event_info = str_replace("<event_end_date>", $_end_date, $event_info);
$event_info = str_replace("<event_start_time>", $_start_time, $event_info);
$event_info = str_replace("<event_end_time>", $_end_time, $event_info);
$event_info = htmlspecialchars($event_info);
$event_info = preg_replace('#(.*)\@(.*)\.(.*)#','<a href="mailto:\\1@\\2.\\3">\\1@\\2.\\3</a>',$event_info);
The Result that comes back is:
Join the fight by taking steps toward a cure. America's Walk for Diabetes is coming to Twin Lakes Park in Greensburg, PA., on September 25, 2005. Walk as an individual or by forming a team of family, friends and co-workers. To sign up or for more information on the event near you, contact Betty Brdar at bbrdar@diabetes.org or (412)824-1181 x4520. Click here for more information.
The entire sentence with the email address bbrdar@diabetes.org is made a link, and the mailto address is the entire sentence???