I am trying to update my sql data through $wpdb, but can't... If anyone can help what's the real issue?
$updated_version = $wpdb->update('wp_visitors', array('views' => $updated), array( '%d' ));
I am trying to update my sql data through $wpdb, but can't... If anyone can help what's the real issue?
$updated_version = $wpdb->update('wp_visitors', array('views' => $updated), array( '%d' ));
Share
Improve this question
asked May 1, 2019 at 4:12
Musaf HanifMusaf Hanif
11 bronze badge
1 Answer
Reset to default 1You're missing your where statement. You need to tell wpdb
which row it should be updating, otherwise you're looking to insert rather than update.
From the $wpdb::update Codex:
wpdb->update( string $table, array $data, array $where, array|string $format = null, array|string $where_format = null );