I can't figure out why this file doent move?
the move_uploaed_file function fails when ever I run it.
$newdir = "../Songs/uploaded/";
$movefile = "../uploads/".$_GET['file']."";
if(!move_uploaded_file($movefile,$newdir)) die("cannot move file");
I am almost positive that it moves according to the directory which the php script is located.