i keep getting :
Fatal error: Call to undefined function zzz()
In file a.php:
<?php
function yyy($x) {
include "b.php";
zzz($x);
}
yyy('hihi');
?>
in file b.php:
<?php
function zzz($x) {
echo $x;
}
?>
if I cut the function and put it in the same file it'll work... (OBVIOSLY)
thx
_