How to implement WordPress plugin update that modifies the database?
In short, yes the – $wpdb class. See Codex for more information. Whenever you interact with a custom table (or any table, really) you should go through $wpdb – in particularly make sure you’re familiar with the prepare method which can help escapes queries and prevent injections. You should be familiar with already, as you … Read more