Forum Moderators: coopster
i have seen at php.net and other sites..please help as i am a newbie to php
$input = "abc@example.net"; $input = str_replace("@", " at ", $input); $input = str_replace(".", " dot ", $input);
;)
$input = "abc@example.net"; $input = str_replace(array('@', '.'), array(' at ', ' dot '), $input);
i did this
$email2=eregi_replace("@"," at ",$email); $email3=eregi_replace(".com"," dot com ",$email2); $email=email3;
LOL
thanks
u made my code a single line