I created a new page using add_object_page and want to save the inputs there to a custom database table.
The problem is that my form posts to options.php, (following book advice). Should the form post elsewhere?
Is it possible to save options to a custom database table using dbDelta instead of to the wp-options table. I am currently using the register_setting() add_settings_section() add_settings_field() formula.
What is your take on this? How would you grab _POST[] and save to database table?