לא מסתדר, ניסיתי מה שאמרת
PHP קוד:
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
$x = $target_path;
if (file_exists($x))
{
srand((double)microtime()*1000000); // random number inizializzation
$filename = rand(0,20000); // add number to file name
$x = $filename; // full destination path to images dir
}
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
$x = basename( $_FILES['uploadedfile']['name']);
echo "הקובץ הועלה בהצלחה,נא העתק את הכתובת והוסף אותה למקום המתאים!";