英文:
update wordpress database with php
问题
I am trying to update my WordPress database when the button "btn-upddb" is clicked.
我的目标是在单击"btn-upddb"按钮时更新我的WordPress数据库。
My PHP code:
我的PHP代码:
if(isset($_POST['btn-upddb'])){
global $wpdb;
$wpdb->update(
$wp_uwp_usermeta,
array(
'user_volume' => '1500'
),
array(
'user_id' => '1'
)
);
}
The HTML code is:
HTML代码如下:
<form method="post">
<input name="btn-upddb" type="submit" value="update database" />
</form>
I tried the PHP code and the HTML code at the top, and I am expecting to update the table wp_uwp_usermeta.
我尝试了顶部的PHP代码和HTML代码,我希望更新wp_uwp_usermeta表格。
英文:
i am trying to update my wordpress database when button "btn-upddb" is clicked.
my php code:
if(isset($_POST['btn-upddb'])){
global $wpdb;
$wpdb->update(
$wp_uwp_usermeta,
array(
'user_volume' => '1500'
),
array(
'user_id' => '1'
)
);
}
the html code is:
<form method="post">
<input name="btn-upddb" type="submit" value="update database" />
</form>
i tried the php code and the html code in the top and i am expecting to update the table wp_uwp_usermeta
答案1
得分: 1
你的表名不正确,可以像这样使用表名:
$table_name = $wpdb->prefix . 'wp_usermeta';
然后在你的代码中使用正确的表名。
以下命令显示你的动态前缀:
$wpdb->prefix
英文:
You are not using a correct name for your table name, you can use something like this for your table name :
$table_name = $wpdb->prefix . 'wp_usermeta';
and then you can use the correct table name in your codes.
This below command shows your dynamic prefix :
$wpdb->prefix
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论