Forum


Calc Builder Support

Calc Builder support
Forums
Public write access is disabled. Please login

Passing values to/from RSForms 18.10.2011 20:40

Works brilliant, thanks alot, but I do have some questions:

I need to have one initial form. I am using RSForms to process that. Is there any way I can pass those variables to the calcbuilder form, or perhaps the calc form variables to RSForms?

Thanks for your help!

Re: Passing values to/from RSForms 18.10.2011 20:40

Hello,
we are not sure about how RSForms stores it's output. If it's saved at database, the variables could be read from the rsforms table. Other way to share variables between the extensions, is to add session variables, maybe at the time the form is submitted. If you place this code

session_start();
$_SESSION['result']=$result;

or, using joomla standards:

$session=JFactory::getSession();
$session->set('result',$result);



at RSForms or calcbuilder code, you'd be able to recover the variable 'result' at any other extension afterwards.

$result=$session->get('result');

Hope this helps, best regards
Moonsoft Team
www.moonsoft.es
Are you satisfied with our products/services/support?
Please help us to keep improving, add a review at  joomla extensions site and  magento connect

Our clients' feedback