Remove space on file name before or after stored in databases

Use str_replace(), it will replace all occurrences of the search string with the replacement string.
str_replace(" ","",$oldname);

No comments:

Post a Comment