Wordpress - Plugin options will not save in database
...because your input (POST) name needs to match the one in your register_setting
call:
register_setting( 'first_tab_options', 'first_tab_items' );
....
<input type="text" name="first_tab_items"...
Otherwise how the hell does WP know that some_name
in POST holds your option data? ;)