Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created August 15, 2018 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bappi-d-great/6df74a122b21d0597720eded74dbf4e9 to your computer and use it in GitHub Desktop.
Save bappi-d-great/6df74a122b21d0597720eded74dbf4e9 to your computer and use it in GitHub Desktop.
Method: add_poll_entries()
<?php
$poll_id = 7;
$entry_metas = array(
array(
'name' => 'text-1',
'value' => 'Text Input Value'
),
array(
'name' => 'email-1',
'value' => 'my@email.com'
)
);
Forminator_API::add_poll_entries( $poll_id, $entry_metas );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment