Php kullanarak sunucuya dosya yüklemek için nasıl

0 Cevap php
$lastid_id = mysql_insert_id();
$folderpath = "Attachment/".$lastid_id."".$fileatt_name;
if ($uploaded) {
    copy($uploaded,$folderpath);
} else {
    if (move_uploaded_file($_FILES["attachcopy"]["tmp_name"],$folderpath)) {
        $uploaded = $folderpath;
    }
}         

Kodlama yerel sistemde iyi çalışıyor ama bu kod con sunucu sistemine dosya yüklemek değil yukarıda, herhangi bir fikir verin.

Teşekkür ederiz ...

0 Cevap