Hi There
I’m currently coding a multi-step form for a customer, using a combination of custom PHP functions and FreeForm and just ran into a strange problem.
Let’s take this situation:
<?php
$var = "I'am just a test variable.";
function print_me() {
global $var;
echo($var);
}
?>
This should print out the contents of $var but strangely it does not, PHP set either input or output.
Any ideas? Is this a bug?
