hi,
i have a question
i can call a variabile in 2 different Custom Code Action?
tks
i have a question
i can call a variabile in 2 different Custom Code Action?
tks
Hi federcla ,
Yes, the simplest way is to add it to the ChronoForms $form->data[''] array and then it will be available in to the form and to all actions.
Bob
Yes, the simplest way is to add it to the ChronoForms $form->data[''] array and then it will be available in to the form and to all actions.
Bob
I use $ form-> data [''] to get the values from the form fields, I can use it to pass an array to a custom code to another?
my $ array = G
example: $ form-> data ['$ g']
I do not have to pass a key value?
tks
my $ array = G
example: $ form-> data ['$ g']
I do not have to pass a key value?
tks
HI federcla,
You'd use it like this:
In another, later action you can either reference $form->data['some_key'] or {some_key} depending on the context.
Bob
You'd use it like this:
<?php
$form->data['some_key'] = $g;
?>
In another, later action you can either reference $form->data['some_key'] or {some_key} depending on the context.
Bob
This topic is locked and no more replies can be posted.