wordpress插件致命错误:未捕获错误:在null上调用成员函数update()

时间:2018-06-22 07:56:27

标签: php wordpress

我正在使用一种表单将数据从index.php更新到update.php。我在使用以下代码的update.php上遇到致命错误

global $wpdb;
$wpdb->update( 
    'wp_table', 
    array( 
        'apikey' => '$apikey',      // string
        'locid' => '$locid',
        'appid' => '$appid',
        'ulr' => '$ulr' 
    ), 
    array( 'id' => '1' ), 
    array( 
        '%s',       // value1
        '%s',
        '%s',
        '%s'    
    ), 
    array( '%d' ) 
);
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );

我不知道我在哪里做错了吗?

0 个答案:

没有答案