我正在使用一种表单将数据从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 );
我不知道我在哪里做错了吗?