• Resolved dileepa1

    (@dileepa1)


    Hi,

    I am using Forminator Lite version i need to know how to get submitted data to sql data base automatically. if i integrate with google sheet it will allow to access sql datbase?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dileepa1

    I hope you are doing well.

    if i integrate with google sheet it will allow to access sql datbase?

    It only writes a file in Google Drive that wouldn’t connect directly to the database.

    There are some alternatives that you can look.

    – Using Zapier:

    Zapier allows Forminator to integrate to multiple other apps including some SQL features: https://zapier.com/apps/sql-server/integrations Note it is a Premium service, however can be used on Forminator free.

    – FortressDB

    We also have a native integration to FortressDB.

    – Custom API:

    Forminator has a custom API that you can use to create a custom function:
    https://wpmudev.com/docs/api-plugin-development/forminator-api-docs/

    – Hooks, we do have available hooks to create a custom integration, you can use the forminator_custom_form_submit_before_set_fields action,

    /**
    * Action called before setting fields to database
    *
    * @since 1.0.2
    *
    * @param Forminator_Form_Entry_Model $entry - the entry model
    * @param int $form_id - the form id
    * @param array $field_data_array - the entry data
    *
    */
    do_action( 'forminator_custom_form_submit_before_set_fields', $entry, $form_id, $field_data_array );

    Let us know if you have any additional question.
    Best Regards
    Patrick Freitas

    Plugin Support Dimitris – WPMU DEV Support

    (@wpmudev-support6)

    Hello @dileepa1

    Hope you’re doing well!
    I’m marking this topic as resolved due to recent inactivity.
    Feel free to post back here or create a new topic if you need more help. 🙂

    Take care,
    Dimitris

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘How Forminator submitted data automatically send to SQL data base?’ is closed to new replies.