Hi frnds...
i m trying to upload mp3 file ..this is my code..
upload_max_filesize = 20M;//in php.ini
$tname = $_FILES["tphoto"]["name"];
$ttmp_name = $_FILES["tphoto"]["tmp_name"];
//Audio File Uploading....
if($_FILES['tphoto']['type'] == 'audio/mpeg'){
$dir="../../music/$aid";
move_uploaded_file($ttmp_name,"$dir"."/"."$tname");
}
it displays no error...but, no output.
can any body give me some suggestion plz...
Thanks in advance...
Sari K