Last active
August 15, 2018 21:51
-
-
Save bappi-d-great/db570c59860fbfc9e7e99eabbd6e8461 to your computer and use it in GitHub Desktop.
Method: add_form_entries()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$form_id = 7; | |
$entry_meta= array( | |
array( | |
'name' => 'text-1', | |
'value' => 'Text Input Value' | |
), | |
array( | |
'name' => 'email-1', | |
'value' => '[email protected]' | |
) | |
); | |
Forminator_API::add_form_entries( $form_id, $entry_meta ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment