Using php globals in FaclieForms / Breezing Forms |
If you have a re-occuring value in a long Breezing Forms / FacileForms form you can use a global variable especially if the value needs to be changed for subsequent forms. Here is how to use global php variables in your Breezing Forms / FacileForms form. ![]() Open your form and go to Edit Form -> Form Pieces tab. Here you can declare global variables that will be available throughout your form. global $jobtitle, $pdf1, $pdf2, $pdf3, $pdf4; When you want to display the value use this code format. It can be used in text box values, html etc etc <?php global $jobtitle; return $jobtitle; ?> |
Last Updated on Monday, 06 September 2010 08:57 |