Updating custom db table in WordPress

function my_function() {
global $wpdb;
$wpdb->update('wp_my_appointments', array(
                            'title' => 'Msc',
                            'msg' => 'Message'
                            ),array(id => 3));
}

Leave a Reply