Inserting in custom db table in WordPress

function my_function() {
global $wpdb;
$wpdb->insert('wp_my_appointments', array(
                            'title' => 'Mr',
                            'msg' => 'Message'
                            ),array(
                            '%s',
                            '%s'));
}

Leave a Reply