Re: [PHP] old HTTP variables

2009-01-19 Thread Ashley Sheridan
On Sun, 2009-01-18 at 22:50 -0700, Ashley M. Kirchner wrote: > Larry Garfield wrote: > > http://us3.php.net/manual/en/ini.core.php#ini.register-long-arrays > > > Bingo. That's what I needed. > > > Although you should probably take the time to upgrade the app anyway, as > > those > > var

Re: [PHP] old HTTP variables

2009-01-18 Thread Ashley M. Kirchner
Larry Garfield wrote: http://us3.php.net/manual/en/ini.core.php#ini.register-long-arrays Bingo. That's what I needed. Although you should probably take the time to upgrade the app anyway, as those variables are deprecated and won't be around forever. Yeah, that would be nice, except

Re: [PHP] old HTTP variables

2009-01-18 Thread Larry Garfield
On Sunday 18 January 2009 11:12:28 pm Ashley M. Kirchner wrote: > Maybe I'm asking for trouble here, but, is there any way to make PHP > 5.2.8 understand the old $HTTP variables? Like: > > $HTTP_SESSION_VARS > $HTTP_GET_VARS > $HTTP_POST_VARS > $HTTP_SESSION_VARS > $HTTP_COOKIE_VARS > > et

Re: [PHP] old HTTP variables

2009-01-18 Thread mike
On Sun, Jan 18, 2009 at 9:18 PM, Ashley M. Kirchner wrote: > mike wrote: >> >> $HTTP_GET_VARS = $_GET; >> >> etc. :) > > I know what they are. I'm not about to change a couple of thousand lines > of someone else's code unless there's no other way. :) no i mean define that at the top before th

Re: [PHP] old HTTP variables

2009-01-18 Thread Ashley M. Kirchner
mike wrote: $HTTP_GET_VARS = $_GET; etc. :) I know what they are. I'm not about to change a couple of thousand lines of someone else's code unless there's no other way. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] old HTTP variables

2009-01-18 Thread mike
$HTTP_GET_VARS = $_GET; etc. :) On Sun, Jan 18, 2009 at 9:12 PM, Ashley M. Kirchner wrote: > > Maybe I'm asking for trouble here, but, is there any way to make PHP 5.2.8 > understand the old $HTTP variables? Like: > > $HTTP_SESSION_VARS > $HTTP_GET_VARS > $HTTP_POST_VARS > $HTTP_SESSION_VARS

[PHP] old HTTP variables

2009-01-18 Thread Ashley M. Kirchner
Maybe I'm asking for trouble here, but, is there any way to make PHP 5.2.8 understand the old $HTTP variables? Like: $HTTP_SESSION_VARS $HTTP_GET_VARS $HTTP_POST_VARS $HTTP_SESSION_VARS $HTTP_COOKIE_VARS etc., etc. I have an old application for which development has stopped back in