Home >Backend Development >PHP Tutorial >不选择图片也会输出

不选择图片也会输出

WBOY
WBOYOriginal
2016-06-23 14:04:05997browse

前台PHP
for($i=1; $i {
    $j=$i+1;
$k=$i+5;
echo'

输入图片'.$j.'(大小394px*296px)


   
';
}

后台PHP

for($i=1;$i   {
  $j=$i+1;
  $k=$i+5;
  if ($_FILES["file'.$i.'"]["error"] > 0)
  {
 echo'没有选择图片'.$j;
  ${"iii".$i}=$_POST['detail'.$k];
  
  }
else
  {

   if (file_exists("images/" . $_FILES["file'.$i.'"]["name"]))
      {
      echo $_FILES["file'.$i.'"]["name"].'图片文件名'.$j.'已存在请换文件名';
    ${"iii".$i}='';
      }
    else
      {
        move_uploaded_file($_FILES["file'.$i.'"]["tmp_name"],
      "images/" . $_FILES["file'.$i.'"]["name"]);
      echo "Stored in: " . "images/" . $_FILES["file'.$i.'"]["name"];
  ${"iii".$i}= 'images/'.$_FILES["file'.$i.'"]["name"];

  }

  }
  
  
  }

为什么我不选择图片 点击提交 不会输出 echo'没有选择图片'.$j;




回复讨论(解决方案)

没有看到 form 标记,不好说

楼主最好规范一下内容,内容如果是代码的话,就用代码块符号编辑,这样可以能让别人更快更好的理解你的代码

我代码太多了 。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn