|
Posted by Jerry McEwen on 10/10/65 11:50
Thanks much, I do little with PHP locally that I had never turned that
on.
And now for the solution you're dying to hear: I renamed my variable
and forgot to adjust my URL. Duh.
Thanks to all.
On Sat, 17 Jun 2006 17:18:09 -0400, "-Lost"
<spam_ninjaREMOVEME@REMOVEMEcomcast.net> wrote:
>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
>
[Back to original message]
|