Hi,
I I have an extra parameter formed by combining two fields on the form. How should I behave?
ES:
par=data1_data2 (the result should be ?par=1_2)
I had no problem to add a value only, but I don't know how to do a mix of multiple fields and symbols
Thx!
I I have an extra parameter formed by combining two fields on the form. How should I behave?
ES:
par=data1_data2 (the result should be ?par=1_2)
I had no problem to add a value only, but I don't know how to do a mix of multiple fields and symbols
Thx!
Hi,
You will have to use PHP in a custom code action to achieve this:
Best regards,
Max
You will have to use PHP in a custom code action to achieve this:
<?php
\GCore\Libs\Env::redirect("url here".$form->data("data1")."_".$form->data("data2"));
Best regards,
Max
This topic is locked and no more replies can be posted.