Hi there,
I'm beginner with ChronoForms and PHP and i need some help with simple form.
Can you explain to me step by step how to calculate this exemplary form -> http://www.carway.lexcom.pl/index.php/zliczanie using options Form Wizard on ChronoForms
I will be very grateful for any tips
I'm beginner with ChronoForms and PHP and i need some help with simple form.
Can you explain to me step by step how to calculate this exemplary form -> http://www.carway.lexcom.pl/index.php/zliczanie using options Form Wizard on ChronoForms
I will be very grateful for any tips
Hi mastek,
You could do it after the form Submits using a Custom Code action with PHP like this:
Bob
You could do it after the form Submits using a Custom Code action with PHP like this:
<?php
$form->data['total'] = $form->data['input_checkbox_4'] + $form->data['input_checkbox_5'] + $form->data['input_radio_6'] + $form->data['input_select_7'];
?>Then you could add {total} in an Email or Thank You Page action. Bob
This topic is locked and no more replies can be posted.
