I am allowing users to upload any kind of file on my page, but there might be a clash in names of files. So, I want to rename the file automatically, so that anytime any fil
You can use php core function rename(oldname,newName) http://php.net/manual/en/function.rename.php
rename(oldname,newName)