HI,
for example, if we have two FORM where we want to send values from one to another, use this solution:
in the submit pieces insert this code in the FORM from where we want to send the value:
$this->execPieceByName('ff_InitLib');
$text1value=ff_getSubmit('text1frompage1');
$text2value=ff_getSubmit('text2');
ff_redirect("index.php?option=com_breezingforms&ff_name=page3param&text1={$text1value}&text2={$text2value}");
In the part of the code :
$text1value=ff_getSubmit('text1frompage1');
$text2value=ff_getSubmit('text2');
instead
'text1frompage1', 'text2'
inser names of elements that you want send.
In this part of code
ff_redirect("index.php?option=com_breezingforms&ff_name=page3param&text1={$text1value}&text2={$text2value}");
please insert URL of site.
In another FORM that received values (we are sending two values) create a two-element where value will be received and in the 'Properties' of element in section 'value' set this code
first element : <?php return JRequest::getVar('text1'); ?>
second element : <?php return JRequest::getVar('text2'); ?>
That's all I hope I explained this well!
Please test this option and let me know!
If you get to stuck, please let me know!
Regards,
Mirko
Please download->unzip->and install it (BF->Configuration->Package Installer->select this xml file->Install Package).
In the zip file, you will find two FORM.