如何上传音频和移动在PHP中

时间:2016-09-22 08:12:57

标签: php html html5 audio

请告诉我如何在php上传音频文件?

问题是音频不是在文件夹中移动而不是上传,但在数据库中插入完全正常。

if(isset($_POST['audio']))
{

    extract($_POST);
    $audio=rand().$_FILES['audio']['name'];
    $tname=$_FILES['audio']['tmp_name'];
    $path='upload/audio/'.$audio;
    move_uploaded_file($tname,$path);
    $cmd=Insert("insert into post(type,value,date_time)values('audio','$audio',now()) ");
}

0 个答案:

没有答案