> This should be simple but having never have done it before and at > deadline...help please. > > Need to change: > > [EMAIL PROTECTED] > > to; > > user=domain
str_replace() is what you want... $var = str_replace( "@", "=", $oldvar ); -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

