Hi there !
Is it possible to create a form entry from php ?
Is there a php api ?
Thanks,
Guillaume.
WordPress Forms
Hi there !
Is it possible to create a form entry from php ?
Is there a php api ?
Thanks,
Guillaume.
Formidable Pro is the single best piece of software that I have ever purchased. Hands down the best 97.00 I've spent on software.
T. Stevenson (Portsmouth Public Library)Formidable Pro has met all of my needs and exceeded my expectations.
Jim Harrion (Affordable Website Assistance)Copyright © 2013 Strategy11, LLC
September 20, 2012 at 1:26 pm
You can take a look at and use the create() function in formidable/classes/models/FrmEntry.php. Here's a related post that may also be helpful:
http://formidablepro.com/help-desk/storing-data-in-formidable-from-a-non-formidable-form/
September 21, 2012 at 8:13 am
Thanks Stephanie,
Is there anything I can do to avoid the "
<script type="text/javascript">
jQuery(document).ready(function($){
jQuery.ajax({type:"POST",url:"http://www.mywebsite.fr/index.php?plugin=formidable",
data:"controller=entries&frm_action=ajax_set_cookie&entry_id=17&form_id=9"
});
});
</script>
" return ?
September 21, 2012 at 9:59 am
Yes, in your code add:
if(!defined('DOING_AJAX'))
define('DOING_AJAX', true);
Topic closed.