$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 ...