Forum Moderators: coopster
http://www.alabamawidgetsonline.com http://www. and also without the .com // Run through the text and replaces all occurrences of $oldText
$domainTitle = str_replace($oldWord , $newWord , $domainTitle);
// Run through the text and replaces all occurrences of $oldText
$stateName = str_replace($oldWord, '', $domainTitle);
$domainTitle = str_replace($oldWord, $newWord, $domainTitle);
Since ucfirst() does work in-place, ...
Since ucfirst() does not work in-place, ...