Okay, it worked with a little variation of your suggestion, but now it displays the name of the temp file instead of the actual filename, how would i alter this to display the name of the uploaded file?
$path = pathinfo($userfile);
$filename = $path['basename'];
copy("$userfile", "$move_path/$filename") or die("Couldn't copy the file");