I'm trying to upload a file and at the same time remove any spaces in the filename. I have the following, but it doesn't seem to be working.
$newfile = pathinfo($_FILES['userfile']['name']);
$newfile = str_replace(" ", "", $filename);
copy($_FILES['userfile']['tmp_name'], $path . $filename);