View Single Post
11-07-2011, 06:01 PM
#5
Village Genius is offline Village Genius
Village Genius's Avatar
Status: Geek
Join date: Apr 2006
Location: Denver, CO
Expertise: Software
Software: Chrome, Notepad++
 
Posts: 6,894
iTrader: 18 / 100%
 

Village Genius will become famous soon enough

  Old

While the chances of a duplicate are slim the only completely sure way to do it is to use a do...while loop and rename it every time an existing one is made, to give a quickly typed pseudocode example

PHP Code:
$uploaded=false;
do{
$randNum=rand(0,99999);
if 
file+$randnum does not exist
upload file
$uploaded
=true;
end if
} while(
$uploaded==false);