i am trying to upload a mp3 file to server using php code as shown.
$audio=basename($_FILES['file']['name']);
$audio=str_replace(' ','|',$audio);
$tmppath1="audios/".$audio;
move_uploaded_file($_FILES['file']['tmp_name'],$tmppath1);
$query="INSERT INTO `appinstaller`.`tbl_audio` (`audioname`) VALUES ('$audio')";
$res=mysql_query($query);
in this file uploaded successfully but uploading to server taking more time.
is there any method to upload MP3 files faster?