Page 2 of 2

Posted: Wed Jul 30, 2003 11:49 pm
by jmarcv
I don't see where you are outputting text. Must be in your functions, but we can't see them from here.

Posted: Wed Jul 30, 2003 11:52 pm
by nielsene
matthiasone wrote:I finally found the setting ........globals are off.......I will contact the hosting service and see about getting it turned on

Sorry to trouble everyone

:oops:
I highly doubt they will turn it on. It was turned off by default in 4.2.0 and later because leaving it on is a massive security problem. Read the sticky thread in this forum about passing variables in PHP 4.2+

A very dirty and ugly and insecure fix is to add

Code: Select all

extract($_GET);
to the top of your script. It is much, much, much better to explicitly import the variables you need, by name as I suggest in my last post.

Posted: Thu Jul 31, 2003 12:00 am
by matthiasone
that fixed the problem......

thanks nielsene and jmarvc

Posted: Thu Jul 31, 2003 12:06 am
by jmarcv
Well, I wasn't any help, but glad you got it.