Hi all, I want to allow uploading files to my webpage, but want the following to happen to the filename:
-ONLY LETTER AND NUMBERS
-REPLACE ALL SPACES WITH UNDERSCORES
I have the first one down but don't know how to replace all spaces with underscores, with what I have right now, it just gets rid of spaces:
ereg_replace("[^A-Za-z0-9]", "", $string);
Now, how can I replace spaces with underscores in that ereg_replace statement?
Thanks