how to automatically rename the uploaded file if someone is coming to upload his file and if it has the name of anybody else file name i dont want the new to replace the old so i want the server to rename automatically the uploaded file.. thanks..
automatically rename uploaded file
Collapse
X
-
Tags: None
-
Well, using file_exists() you'd check to see if the file name is already present - if it is you then assign a random name to it - rand() - and then save the file.Originally posted by rimkhalifehow to automatically rename the uploaded file if someone is coming to upload his file and if it has the name of anybody else file name i dont want the new to replace the old so i want the server to rename automatically the uploaded file.. thanks..
Pretty simple :)
Comment