我有一个< input type =“file”>字段以及表单中的其他文本字段,当我尝试使用浏览按钮上传任何文件,然后单击提交按钮时,输入type =“file”字段中的值消失,我希望浏览的值保留在< ; input type =“file”>如果错误存在于其他字段中,是否有任何方法可以保留浏览的值并保留在< input type =“file”>单击提交按钮时,
原文链接:https://www.f2er.com/php/132080.html<form action="form.PHP" method="post" enctype= multipart/form-data> <input type="file" value="$file" name="file"/> <input type="text" value="$line" name="line"> <input type="submit" name="btnsubmit"> </form> if($_POST['btnsubmit']) { $line =$_POST['line']; $file =$_FILES['file'] ['name']; if($line) { //do something //conditions for file check here } else //error }