Send submitted entry to another site
add_action(‘frm_after_create_entry’, ‘yourfunctionname’, 30, 2); function yourfunctionname($entry_id, $form_id){ if($form_id == 5){ //replace 5 with the id of the form $args = array(); if(isset($_POST[‘item_meta’][30])) //replace 30 and 31 with the appropriate field IDs from your form $args[‘data1‘] = $_POST[‘item_meta’][30]; //change ‘data1’ to…Continue reading