Hello there. okay so i got a script that removes "_" and replaces it with a space " " and it does not work i even used ereg_replace and eregi_replace none worked yet it works backwards( " ","_")
thanks a lot here is the script:
$namefixed = preg_replace("/_/", " ", $name);
and even
$namefixed = preg_replace("_", " ", $name);