Hi, Any ideas how to remove space between words ? example " cow money" to "cowmonkey"
str_replace()
$newvar = str_replace(' ','',$oldvar);