View Single Post
Old 11-27-2003, 02:02 PM   #2 (permalink)
bdl
Senior Contributor
 
Join Date: May 2002
Location: vta.ca.usa
Posts: 555
bdl is on a distinguished road
You might try str_replace().
PHP Code:
$email "bdl@codenewbie.com";
$email str_replace("@"" AT "$email);
$email str_replace("."" DOT "$email); 
bdl is offline   Reply With Quote