0

我尝试了很多以从数据库中获取值并将其放入复选框数组但失败了。请帮助!

* img[] 一直是空的,就像我使用 $_POST(['img']) 调用该部分时没有任何值进入它一样!!* 这是我的代码:

   echo " <h2>Select image to delete: <h2>";
   $s = mysql_query("SELECT * FROM image WHERE u_id = '$u_id'");
   $num = mysql_num_rows($s);

   if($s)
   { 
      ?>
   <form name="f1" method="post" action=""> 
      <?php
    while($row = mysql_fetch_array($s))
    { 
      ?>      
    <input type="checkbox" name="img[]" value="<?php $row['path'] ;?>" />
    <img width="100" src="<?php echo $row['path']." ";?>">
    <?php                 
    }
    ?>
       <br />
       <br />
       <input type="submit" name= "subDel" value = "Delete" />
       </form>
     <?php

    } 
4

2 回答 2

0

那这个呢?:)

<input type="checkbox" name="img[]" value="<?php $row['path'] ;?>" />

=>

    <input type="checkbox" name="img[]" value="<?php ECHO $row['path'] ;?>" />
于 2012-08-14T11:21:26.533 回答
0

使用 $_POST['variableName'] 在 PHP 中检索发布数据 - 没有括号,大小写很重要

在您的情况下, $_POST['img'] 的类型是array。未选中的项目没有价值。如果未检查任何内容,则您的 post 变量为空甚至未定义(尚未测试)。

通过以下方式访问您的价值观

if (array_key_exists($index, $_POST['img']) == true) {
    // $index is checked
    $doSomething = $_POST['img'][$index];
}
于 2012-08-14T11:26:22.920 回答