Thats it, I want to insert a splace for every underscore.
function Repalce_With_Space($input) {
// Replace spaces with Percentages
$output = preg_replace("/_/e" , ' ' , $input);
return $output;
}
But when I use " " or ' ' with the space it replaces the underscore with nothing. I am sure there's a \space or something like that I can use?
Thanks for the help.
Micah