I have a php-file called kal_test.php
which gives a value to the variable $vbl
. This variable is needed in the file called kal_generator.php<
You're likely defining a function or class in kal_generator.php
. PHP aborts when you try to redefine such a function or class. Consider putting your code in a function, include that function once and then run the function instead of including a file.
bla blabla
EOF;
foreach ($output as $v1) {
echo "";
foreach ($v1 as $v2) {
echo "$v2 ";
}
echo " \n";
}
echo "\n";
}
?>