Your component is amazing. Is is so helpful. Thanks.
Now I have a question. I am using the Form Wizard for my first form and would display the Radio Button and Check Box submissions in my sending Email to see the results. But it is impossible. I found no Field Name as ( such as {text_7}). 😶
Sorry, for my question. I found no posts for my question.
Which one could help a rookie? Thanks so much!🤣
Martin
If you turn Debug on temporarily on the Form Editor General tab and submit the form you will see the $_POST array which contains all the data submitted from the form. The radio and checkbox entries will probably look like radio0 and check0.
You will also need to set 'Let ChronoForms handle my array' to 'Yes' if you have Checkbox Groups in your form.
Bob
submit the form you will see the $_POST array which contains all the data submitted from the form. The radio and checkbox entries will probably look like radio0 and check0.
Sorry Bob, I don't understand. I turned the Debug to "YES" and
You will also need to set 'Let ChronoForms handle my array' to 'Yes' if you have Checkbox Groups in your form.
Changed!But what I should write in {..._..}in my Editor to see the CheckBox Entries??
Thanks again for your support!🙄
Martin
Please turn debug on in the form General Tab, then submit the form and post the debug - including the 'dummy emails' results here.
Bob
E-mail message
From: User 1 [martin.lehmbrock@ball24.net]
To: [email]martin.lehmbrock@ball24.net[/email]
CC:
BCC:
Subject: Dies ist ein Test!
Ein Besucher Ihrer Website, Mr. /Mrs. User 1 mit der Emailadresse [email]martin.lehmbrock@ball24.net[/email] hat ihnen folgende Nachricht geschickt
Erste Daten
This is a test!
Hauptdaten
This is a test!
dfvdfv
{radio_10}
Hauptdaten
{$_POST}
Submitted by 80.171.81.58
Files:
Hallo User 1,
vielen Dank für die Nachricht.
Ich werde mich in Kürze bei Ihnen melden.
Euer BALL24.NET Team
1. Form passed first SPAM check OK
2. Form passed the submissions limit (if enabled) OK
3. Form passed the Image verification (if enabled) OK
4. Form passed the server side validation (if enabled) OK
5. $_POST Array: Array ( [text_0] => User 1 [text_1] => [email]martin.lehmbrock@ball24.net[/email] [check2] => Array ( [0] => check 1 [1] => check 2 [2] => check 3 ) [text_7] => This is a test! [select_10] => option 2 [radio1] => radio 1 [text_10] => This is a test! [check0] => Array ( [0] => Guest ) [chrono_verification] => hkagp [button_6] => Submit [3e29b4ddbb2c1d76aa46660c8b97e6a4] => 1 [1cf1] => 274ceda581538f91c9c064a6e739bffe [chronoformname] => Testform )
6. $_FILES Array: Array ( )
7. Form passed the plugins step (if enabled) OK
8. An email has been SENT successfully from (User 1)martin.lehmbrock@ball24.net to [email]martin.lehmbrock@ball24.net[/email]
9. Debug End
Hope, that will help you to find the problem/solution ... and me 😶
Thanks Bob!
Martin
Here's the $_POST array with the form results:
$_POST Array: Array (
[text_0] => User 1
[text_1] => martin.lehmbrock@ball24.net
[check2] => Array ( [0] => check 1 [1] => check 2 [2] => check 3 )
[text_7] => This is a test!
[select_10] => option 2
[radio1] => radio 1
[text_10] => This is a test!
[check0] => Array ( [0] => Guest )
[chrono_verification] => hkagp
[button_6] => Submit
[3e29b4ddbb2c1d76aa46660c8b97e6a4] => 1
[1cf1] => 274ceda581538f91c9c064a6e739bffe
[chronoformname] => Testform
)
You can see that you have two checkbox arrays check2 and check0 and one radio button radio1
Bob
Thanks for your effort, Bob! It works fine now!lightbulb
Martin