hallo leute,
ich habe folgendes Problem..
ich habe sämtliche include dateien auf echo="hello" gesetzt. bzw. auf null.. ich kriege immer einen fatal error! weiß echt nicht mehr weiter.. was soll das?
ich habe folgendes Problem..
Code:
if ($return !== true) {
include_once('header.php');
if ($return === false) {
header("HTTP/1.0 404 Not Found");
echo 'Failed to load module [b]' . pnVarPrepForDisplay($module) .'[/b] (at function: "[b]'. pnVarPrepForDisplay($func).'[/b]")';
} elseif (is_string($return) && strlen($return) > 1) {
echo $return;
} elseif (is_array($return)) {
$pnRender =& new pnRender($modinfo['name']);
$pnRender->assign($return);
if (isset($return['template'])) {
echo $pnRender->fetch($return['template']);
} else {
$modname = strtolower($modinfo['name']);
$type = strtolower($type);
$func = strtolower($func);
echo $pnRender->fetch("{$modname}_{$type}_{$func}.htm");
}
} else {
echo 'Function [i]' . pnVarPrepForDisplay($func) . '[/i] in module [i]' . pnVarPrepForDisplay($module) .'[/i] returned.';
}
ich habe sämtliche include dateien auf echo="hello" gesetzt. bzw. auf null.. ich kriege immer einen fatal error! weiß echt nicht mehr weiter.. was soll das?