我写了如下代码:
<?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>
删除操作不起作用...请帮帮我
答案 0 :(得分: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注入。