Hello
Please help me
- I need make the operation arithmetics into e-mail template, because I should multiply a variable for costant
In my form I have a textbox and your name textbox is variable , for example into in the textbox the number 5 and after click in the submit button
This is my code in mail template
When arrive the new mail in the context I have
I dont understand because I can't multiply
Thanks
Please help me
- I need make the operation arithmetics into e-mail template, because I should multiply a variable for costant
In my form I have a textbox and your name textbox is variable , for example into in the textbox the number 5 and after click in the submit button
This is my code in mail template
The variable is = {variable}
<?$datavariable='{variable}';?>
</br>
Variable in php =<?echo $datavariable;?>
</br>
Result one = <?echo 35*$datavariable ;?>
<?$costo=(integer)"35";?>
</br>
Result Two<?echo $costo*$datavariable ?>
When arrive the new mail in the context I have
The variable is = 5
Variable in php = 5
Result one = 0
Result two = 0
I dont understand because I can't multiply
Thanks