Probably a pretty simple answer to this, but couldn't figure it out.
We've got a form in CCv6, where the user will enter values in multiple input boxes (ie L01, L02, L03, L04) within a form. We need to sum those values into one (ie M1) and send this as data within the same form.
We've got a form in CCv6, where the user will enter values in multiple input boxes (ie L01, L02, L03, L04) within a form. We need to sum those values into one (ie M1) and send this as data within the same form.
$M1 = $L01 + $L02 + $L03 + $L04How do we pass a variable (ie $M1) as input data in the form? Do we need to create a hidden input field (M1), but then how do we pass the variable $M1 into the field?