Created
August 15, 2018 20:58
-
-
Save bappi-d-great/1e1f1fc02df21018f7cdcdccc8654f75 to your computer and use it in GitHub Desktop.
Method: update_form_entry()
This file contains hidden or 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_id = 32; | |
$entry_meta= array( | |
array( | |
'name' => 'text-1', | |
'value' => 'Text Input Value' | |
), | |
array( | |
'name' => 'email-1', | |
'value' => '[email protected]' | |
) | |
); | |
Forminator_API::update_form_entry( $form_id, $entry_id, $entry_meta ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment