Inside the WordPress database, you'll see a table like "wp_options". During wp installation, if you use the table prefix "xyz". Inside the database, your table name will be "xyz_options". If you use the WP Setting API and options.php, your plugin data will be saved in this table.
<?php $data= $GLOBALS['wpdb']->get_results( 'SELECT * FROM xyz_options', OBJECT ); echo '<pre>'; print_r($data); echo '</pre>'; ?> https:
source share