The data is stored in the wp_posts and wp_postmeta tables. You can see all the field values by doing this:
SELECT website from
(SELECT m1.meta_value as user_firstname, m2.meta_value as user_lastname, m3.meta_value as website
FROM dev_posts
join dev_postmeta m1 on m1.post_id = ID and m1.meta_key = '_field_1'
join dev_postmeta m2 on m2.post_id = ID and m2.meta_key = '_field_2'
join dev_postmeta m3 on m3.post_id = ID and m3.meta_key = '_field_3'
where post_type="nf_sub") as v1
WHERE user_firstname="John" AND user_lastname="Allen"
The “x” in “_field_x” is the field ID in Ninja Forms.
Once you get the content, you can store it in any table.
Related Posts:
- Simple form that saves to database
- Retrieving a Value from a wp-database
- WP plugins for building a database?
- Storing Form data in a different database
- Include plugin form in the home page
- Create user assessment and use results in sql query
- Creating fields in the database
- Allow users to enter and edit data in one-to-many configuration
- Form with response button after on table after submission
- Can’t save formdata in DB
- Delete tables from database when deleting plugin
- How to delete all records from or empty a custom database table?
- WordPress sharding: which multi-DB plugin to use?
- Using Vagrant for customizable WordPress Multi-sites [closed]
- How do I check what plugins are enabled via the database?
- How can a Firebase user registration and login be integrated into a WordPress site?
- How to update widget_text in the wp_options table
- How to disable autocomplete for inputs in contact form 7? [closed]
- prefix table and plugins
- how to show database content in wordpress post
- Storing Email Account Passwords for SMTP Mailing for a WordPress Plugin
- Remove obsolete plugins artifacts from database tables
- If I delete plugins via FTP are settings kept in DB?
- Embed a Google Sheet as you view it in a separate tab?
- Where does WordPress store plugin (enabled/disabled) status for multisite?
- Hook into and send mail using WP Mail SMTP type plugin from HTML static front page?
- New User Form – Custom Menu Page
- How to access data in wordpress database externally using php
- Anonymous Postings
- custom user tables supported in SharDB plugin?
- How to check if tables in WordPress still exists after activations
- Prevent duplicate records in plugin table
- Contributive page where people logged in can write
- Contact Form 7 Get Image Function [closed]
- Checkbox conflict in my custom plugin admin page
- Automatic switch to backup database on fail
- Trying to fix form resubmition with PRG (Getting error: Cannot modify header information – headers already sent by)
- WordPress Integration with Google Groups
- wp_editor content in plugin options page
- WP Plugins – Use includes to display page content
- Why this function not working for install database on plugin activation
- AJAX fileupload – TypeError: not a function ajaxSubmit()
- Plugins in WP_Options but not Active
- WordPress as a data-store?
- Issue running db create table query from static method
- Problem of encoding characters (apostrophes) in my posts publications
- Is there a rule for wordpress plugins developers to not do any database changes upon update?
- Updating options into the wp database performance
- Ajax save data to database on document ready, no data being saved
- External wpdb connections in different plugins on single page
- Custom form not showing in correct place on page
- WordPress plugin: efficient way to store large data
- Call another page in forms
- How to Use the Filter “sidebar_login_widget_form_args”
- Select Form Element Not Saving from Plugin Options
- Contact Form 7 Plugin emails not being received by some accounts
- Integrating Custom Database with WordPress
- Getting URL GET parameter with Code snippets and storing it in database?
- User loggedin as Subscriber form not sending
- Same Plugin tables between wordpress installations
- create pages automatically and dynamically in wordPress
- How to get data from a form on a wordpress site?
- General Term for this form Field
- Why is my form going to frontend on html form submission present on the php files inside my custom plugin?
- WordPress database problem wp_posts, primary key
- How to allow URL with filename & extension in wordpress?
- Programmatically generate new pages for a site based on page template and content elements accessed via DB
- Remove special characters from filenames
- How to send custom mail when a user complete a specific form
- How to submit custom form data using ajax to HubSpot form?
- PHP message: WordPress database error Deadlock found when trying to get lock
- Pause form submissions while upgrading plugins
- using wordpress login details for other website / application / forum?
- How to hide the form after successful php execution
- how to create database to use it in wordpress website?
- How can I automatically send an email with an excel file containing submissions for a form rather than an email per submission?
- How to create a custom page for unrelated database?
- Why doesn’t a form need an ‘action’ with a plugin that uses the post data?
- User content database [closed]
- $POST variable is empty in receiving php add-on function but can be seen by jscript function
- How can i see/log all requests coming from a registration form (not from the UI)?
- Write mysql credentials in plugin
- Form submit from wordpress plugin
- Is saving multiple options or saving multiple items in one option better?
- How do I convince this button to do something when it is clicked?
- Linking Plugin Files to WP
- Collaborate on wordpress local website, share files via dropbox?
- Pull Data from DB for Admin Page Display as Relates to Admin Page Class by BA Internet
- How to find an option in the database?
- Carrying information from button click into form [closed]
- Is there a plugin that will override the “Error establishing a database connection” message? [closed]
- Get the url of attachments from the post?
- County Finder form/plugin?
- Create New Admin Menu Section – Like how custom post type works, in a way
- Shortcode returning specific content of a post
- get_option returning a different value from what’s saved
- How can I delete the options from DB when the plugin is deleted?
- register_activation_hook not working
- plugin doesn’t retrieve data from database
- Display file contents within Plugin