What's the "right" way to switch to another site in php? I want to update_option of a different site than the one I'm on (than the one that $current_site points to) and the only way I've found to do it is to modify $wpdb to "point" to the target site's option's table.
$wpdb->option = "wp_12_options";
Is there a "better" way to update the options of a site that's not the current one?