Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Thies C. Arntzen
On Tue, Aug 20, 2002 at 11:28:55AM +0200, Petre Agenbag wrote: Hi Can someone please tell me what settings to check for on 4.1.2 in order to ensure that scripts that runs on 4.0.4 will run on 4.1.2? I HAVE checked registered_globals = on, but I still get variables that are not passed on

Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Petre Agenbag
Yes, phpinfo() returns that register globals is ON... On Tue, 2002-08-20 at 11:52, Thies C. Arntzen wrote: On Tue, Aug 20, 2002 at 11:28:55AM +0200, Petre Agenbag wrote: Hi Can someone please tell me what settings to check for on 4.1.2 in order to ensure that scripts that runs on 4.0.4

Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Thies C. Arntzen
On Tue, Aug 20, 2002 at 12:01:24PM +0200, Petre Agenbag wrote: Yes, phpinfo() returns that register globals is ON... and does a simple testpage work? test.php ?php echo $hallo; ? http://localhost/test.php?hallo=test should show a page containing the word test

Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Petre Agenbag
My oh my OK, can someone help with this one??? My original Form conatined the following: form action=test.php method=POST enctype=multipart/form-data bla, bla And then things broke, so, out of curiosity, I removed the enctype= part, and now it works/ On Tue, 2002-08-20 at 13:05, Thies

Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Jason Wong
On Tuesday 20 August 2002 22:07, Petre Agenbag wrote: My oh my OK, can someone help with this one??? My original Form conatined the following: form action=test.php method=POST enctype=multipart/form-data bla, bla And then things broke, so, out of curiosity, I removed the enctype= part,

Re: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Douglas Winslow
Petre Agenbag wrote: My oh my OK, can someone help with this one??? My original Form conatined the following: form action=test.php method=POST enctype=multipart/form-data bla, bla And then things broke, so, out of curiosity, I removed the enctype= part, and now it works/ Another

RE: [PHP] 4.04 -- 4.1.2 incompatible

2002-08-20 Thread Mark Middleton
Another tip you might find useful if you're writing code that outputs a FORM that posts to itself, is to echo $PHP_SELF instead of hard-coding the target. If you happen to move your code elsewhere in the future, this will save you the time of having to go back and specify a new POST