Is there a way to set custom names to files uploaded via php? That is, instead of using $HTTP_POST_FILES['userfile']['name'], for instance?????? Any help would be much appreciated. Thanks. -B-
when you upload them, you use either copy() or move_uploaded_file
instead of copy("path/to/file".$HTTP_POST_FILES['userfile']['name'])
use copy("path/to/file/filename_you_chose.jpg");
Cgraz