hello
i want to display a result page befor or after submitting
=> i want to display all values or checked in form (it was a conditional form)
+ it is possible to display a sum of all value
how to ?
regards
i want to display a result page befor or after submitting
=> i want to display all values or checked in form (it was a conditional form)
+ it is possible to display a sum of all value
how to ?
regards
Hi micker,
You can display all the values using the Thank You page action. Does that do what you want?
You can sum values using PHP in a Custom Code action.
Bob
You can display all the values using the Thank You page action. Does that do what you want?
You can sum values using PHP in a Custom Code action.
<?php
$form->data['total'] = $form->data['some_input'] = $form->data['some_other_input'];
?>
Bob
thank tou page action ? do you have link for this ?
that is compatible with conditional form ?
actualy i need to display all result and display an image (i have 6 images in regard of total)
that is compatible with conditional form ?
actualy i need to display all result and display an image (i have 6 images in regard of total)
Hi micker,
Sorry, it was the Thank You page action in CFv4. In CFv5 it's called the Display Message action in the Basic group.
Bob
Sorry, it was the Thank You page action in CFv4. In CFv5 it's called the Display Message action in the Basic group.
Bob
gest it works with {NAMEOFFIELD} !
other question about your code you mean
for exemple ?
its possible to add a pdf button for result page ?
regards
other question about your code you mean
<?php
$total= $form->data['NAMEOFFIELD1'] + $form->data['NAMEOFFIELD1'];
?>
and ofter i do <img src="nameimage<?php echo $total; ?>.jpg">
for exemple ?
its possible to add a pdf button for result page ?
regards
Hi micker,
You can't use PHP in the Display Message action as far as I can tell, you can in a Custom Code action.
If you use my 'total' code (not yours which is different), then you can use {total} to display the value of the total.
Bob
You can't use PHP in the Display Message action as far as I can tell, you can in a Custom Code action.
If you use my 'total' code (not yours which is different), then you can use {total} to display the value of the total.
Bob
ok i understand !!!
last question i will have a "group of question"
1 checkbox (8 value) => to display 8 groupe of field => and display page result (print buton and save to pdf)
chronoform can do this ?
thanks for your great reply !
last question i will have a "group of question"
1 checkbox (8 value) => to display 8 groupe of field => and display page result (print buton and save to pdf)
chronoform can do this ?
thanks for your great reply !
Hi micker,
Sorry, I don't understand the question - but the answer is probably Yes.
Bob
Sorry, I don't understand the question - but the answer is probably Yes.
Bob
lol sorry
i will create a conditional form
8 checkbox => each value display an other group of field
ex
check box 1 => display text1 text2..
checkbox 2 => display text_ textç .. etc
ect ...
after submitting we display result in thanks page
its possible to have a pdf of thanks page ?
i will create a conditional form
8 checkbox => each value display an other group of field
ex
check box 1 => display text1 text2..
checkbox 2 => display text_ textç .. etc
ect ...
after submitting we display result in thanks page
its possible to have a pdf of thanks page ?
Hi Micker,
Yes you can use an Event Switcher action to change the text to be included in the results (or PHP in a Custom Code action).
You can use the TCPDF action to create a PDF of the form results. It's a bit basic but works OK in most cases.
Bob
Yes you can use an Event Switcher action to change the text to be included in the results (or PHP in a Custom Code action).
You can use the TCPDF action to create a PDF of the form results. It's a bit basic but works OK in most cases.
Bob
llight question it possible to display title of value ?
{NAMEOFFIELD->title} for exemple ?
{NAMEOFFIELD->title} for exemple ?
Hi micker,
I'm sorry, I don't understand the question, please can you explain a bit more.
Bob
I'm sorry, I don't understand the question, please can you explain a bit more.
Bob
Hi Micker,
Use this instead:
Bob
Use this instead:
non=non
oui=oui
unless you need 0 and 1 for some other reason?
Bob
This topic is locked and no more replies can be posted.