-2

我写了如下代码:

<?php
global $wpdb;
$table = $wpdb->prefix . 'submitted_form'; 
$randomFact = $wpdb->get_results( "SELECT * FROM " .$table);
$NumRows = count((array) $randomFact);
?>
<form name="delform" method="post" action="">
 <table>
 <?php for($i=0; $i<=$NumRows-1; $i++){ ?>
 <tr>
 <td><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<?php print          $randomFact[$i]->id; ?>"> </td>
<td><?php print $randomFact[$i]->name; ?></td>
<td><?php print $randomFact[$i]->address; ?></td>
</tr>
<?php } ?>
 <tr>
<td><input name="delete" type="submit" id="delete" value="Delete"></td>
</tr>
 <?php if($delete): ?>
  <?php for($i=0; $i<=$NumRows-1; $i++){ ?>
  <?php $id = $checkbox[$i]; ?>
   <?php $wpdb->query("DELETE FROM wp_submitted_form WHERE id =".$id); ?>
    <?php } ?>
   <?php endif; ?>
   </table>
  </form>

删除操作不起作用...请帮助我

4

1 回答 1

3

这里改变了你需要做的事情:变量$delete$checkbox未定义。您可以定义它们或改用 $_POST 变量。

// test what we have here:
//echo '<pre>', print_r($_POST),'</pre>';
if (isset($_POST['delete'])):
    // i dont think that you should use $NumRows here, cause user 
    // can check 1 or 2 checkboxes, not all of them
    $size = count($_POST['checkbox']);
    for ($i=0; $i<=$size-1; $i++) {
        $id = $_POST['checkbox'][$i];
        $wpdb->query("DELETE FROM wp_submitted_form WHERE id =".$id);
    }
endif;

此外,您不必1在循环中减去。您可以使用:

for ($i=0; $i < $size; $i++)

并且不要忘记检查是否$_POST['checkbox'][$i]真的是整数以避免mysql注入。

于 2013-08-03T08:42:59.000 回答