2017-07-26 172 views
-3

我想在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>'; 

} 
+0

沒有_PHP alert_ –

+0

@bub他迴應了js警報 – litelite

+1

@lit精英我知道這一點,但標題是PHP警報不起作用 –

回答

-1

更改您提交的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 type="text/javascript">'; 
      echo '<script>alert("You forgot to upload a file!!!"); 
    setInterval(function(){window.location.href="index.php" },5000); 
    </script>'; 
                 echo '</script>'; 
} 
                ?> 
+0

謝謝你的響應,但它不起作用。 – NickName

+0

對不起,但我編輯它 –

+0

不幸的是,即使您編輯後,它不起作用。 – NickName