dflow Posted November 24, 2008 Share Posted November 24, 2008 i would like to parse and email address: [email protected] to bob@ & mysite.com in short i only need the url how would you approach that? Link to comment https://forums.phpfreaks.com/topic/134020-parse-email-address/ Share on other sites More sharing options...
Mchl Posted November 24, 2008 Share Posted November 24, 2008 $mail = "[email protected]"; $arr = explode("@",$mail); $url = $arr[1]; Link to comment https://forums.phpfreaks.com/topic/134020-parse-email-address/#findComment-697618 Share on other sites More sharing options...
dflow Posted November 24, 2008 Author Share Posted November 24, 2008 bless you Link to comment https://forums.phpfreaks.com/topic/134020-parse-email-address/#findComment-697625 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.