0

我正在尝试在 wordpress 表中添加一个新行(我已经创建),但是每次我添加新行时,所有其他行都会被删除,如果我查看数据库表,我只能看到最后插入的行。

我尝试了两种方法,但我得到了相同的结果:

$ins_reply = $wpdb->insert( $table, array('itemid'=> $item_id, 'time' => $time, 'title' => '', 'text' => $content, 'author' => $user, 'deadline' => 0));

或者

$query_insert = "INSERT INTO ".$table." (`itemid` ,`time` ,`title` ,`text` ,`deadline` ,`author`) VALUES ('".$item_id."', '".$time."', '', '".$content."', '0', '".$user."')";
$wpdb->query($query_insert);

我的代码有什么问题?

4

1 回答 1

0

您在问题中发布的查询不是问题的根源。

也许您正在开发一个插件,其中表创建脚本在此操作期间意外擦除并重新安装表?

于 2013-09-27T15:25:48.553 回答