Posted by -Lost on 10/10/89 11:50
Try debugging. Throw in extraneous print's or echo's (whatever you prefer) and an exit
directly after it.
You may have different error levels (error_reporting) set locally, but have display_errors
set to off.
Are you coding wisely? (I do not know how to phrase that any better.) As in:
if ($_GET['blog']) { ...; } *or* if (isset($_GET['blog'])) { ...; }
Um... I cannot really think of anything else that would cause such a thing. Basically, a
function that returns instead of outputs could do this. Or, perhaps you have an exit or
die somewhere before the output.
Hope this helps...
-Lost
Navigation:
[Reply to this message]
|