Hello,
[sb_private_reply]Apologies about the Delays in replying to your Query![/sb_private_reply]
We have checked out your Form's PHP Code and the issue is that you have not added the Code that takes the Value of the Checkboxes. Please follow the steps below:
- Please find the following code in the include/sendemail.php File:
$program = $_POST['template-fnpform-program'];
and replace it with:
$programs = array();
if( isset( $_POST['template-fnpform-program-fa'] ) ) { $programs[] = $_POST['template-fnpform-program-fa']; }
if( isset( $_POST['template-fnpform-program-ee'] ) ) { $programs[] = $_POST['template-fnpform-program-ee']; }
if( isset( $_POST['template-fnpform-program-hc'] ) ) { $programs[] = $_POST['template-fnpform-program-hc']; }
- Now, find the following code:
$program = isset($program) ? "Program Selection: $program<br><br>" : '';
and replace it with:
$programs = !empty($programs) ? "Program Selection: " . implode( '<br>', $programs ) . "<br><br>" : '';
This should definitely work fine. Let us know if we can help you with anything else or if you find any further issues.