我想在php文件中彈出警報,如果用戶沒有上傳文件的輸入元素。警報不起作用
在index.php文件的源代碼:
<input type='file' name="imgInp" id="imgInp" accept=".jpg, .png, .jpeg|images/*"/>
<img style="max-height: 400px; max-width: 400px;" id="blah" src="#" alt="your image" />
在提交的PHP文件:
if($_FILES["imgInp"]["name"]!='')
{
$first_file=rand().$_FILES["imgInp"]["name"];
$path="images/template/usersupload/";
$tot_dir=$path.$first_file;
if(file_exists($path))
{
move_uploaded_file($_FILES["imgInp"]["tmp_name"],$tot_dir);
}
}
else
{
echo '<script>alert("You forgot to upload a file!!!");
</script>';
echo'<script type="text/javascript">';
?>
window.location="index.php";
<?php
echo '</script>';
}
沒有_PHP alert_ –
@bub他迴應了js警報 – litelite
@lit精英我知道這一點,但標題是PHP警報不起作用 –