admin管理员组文章数量:1344214
I have a large vehicle parts database that i am changing the format of so is a big job. Im trying to add a button to semi automate it on a couple of standalone pages. Ive been working on this for several hours and tried everything i can find online but it still doesnt work. I must be missing something simple, can anyone help?
sample url so you can see the variables are working is
update.php?old_model=Celsior+UCF21+4.0+1UZ-FE&new_model=Celsior+UCF21&engine=4.0+1UZ-FE
code i have is
<?php
global $wpdb;
$old_model = $_GET["old_model"];
$new_model = $_GET["new_model"];
$engine = $_GET["engine"];
//These arent required, only there to confirm variables are populated
echo 'Old Model ' . $old_model . '<br>';
echo 'New Model ' . $new_model . '<br>';
echo 'New Engine ' . $engine . '<br>';
$table_name = $wpdb->prefix.'wpe6_ymm';
$data_update = array('model' => $new_model ,'engine' => $engine);
$data_where = array('model' => $old_model);
$wpdb->update($table_name , $data_update, $data_where);
?>
expecting the database to update with the new values but it doesnt
本文标签: Can39t get wpdbgtupdate to work on woocommerceStack Overflow
版权声明:本文标题:Can't get wpdb->update to work on woocommerce - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739822a2530682.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论