View Single Post
ישן 23-06-07, 22:11   # 7
X-T
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jan 2007
הודעות: 1,021

X-T לא מחובר  

לא מסתדר, ניסיתי מה שאמרת
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 
"הקובץ הועלה בהצלחה,נא העתק את הכתובת והוסף אותה למקום המתאים!"
__________________
You don't shine if you don't glow
  Reply With Quote