PHP dosya yükleme

0 Cevap php

i have been stressing for an hour at this stupid script i am trying to make it uploa an MP3 file to a folder it creates.

I klasör orada hiçbir müzik dosyası ile boş ftp zaman mysql içine bilgiyi koyarak ve klasör met yapıyor

Burada komut sayesinde çok çok fazla!

BTW $ name GÖNDERİLEN adı ve tam adı yayınlanmıştır isim + "dedi. Mp3"

// BEGIN ENTERING INFORMATION TO MYSQL TABLE

$sql = mysql_query("INSERT INTO mattyc (name, date, length, size, link) 

     VALUES('$name','$date','$length','$size','$link')"
     )  or die (mysql_error());

   mkdir("../music/albums/donjuma/$name", 0777);

$song = ("../music/albums/donjuma/$name/$fullname");
        if (file_exists($song)) {
        unlink($song);
        }
        $newname = "$fullname";
        $newfile = rename(($_FILES['song']['tmp_name']),($newname));
        $place_file = move_uploaded_file( $newfile, "../music/albums/donjuma/$name/"."$newname");
        $success_msg = "<font color=\"#009900\">Your SONG has been updated, it may take a few minutes for the changes to show... please be patient.</font>";
        echo $success_msg;



    }
    }
}

0 Cevap