Re: [PHP] Re: php.ini setting

2011-10-03 Thread Jim Giner
"Richard Quadling" wrote in message news:CAKUjMCVwFos-=swewaoyxw2ukvhkwaueh6dahptycj-4wud...@mail.gmail.com... On 3 October 2011 14:30, Jim Giner wrote: > Thanks for the code sample - a little more complex than I've ever used. > Can > you explain something for me? > > The first "unset" line -

Re: [PHP] Re: php.ini setting

2011-10-03 Thread Richard Quadling
On 3 October 2011 14:30, Jim Giner wrote: > Thanks for the code sample - a little more complex than I've ever used.  Can > you explain something for me? > > The first "unset" line - what is it doing?  If it is removing the item from > the $process array, then how can you then reference the value (

[PHP] Re: php.ini setting

2011-10-03 Thread Jim Giner
> > if (get_magic_quotes_gpc()) { > $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST); > while (list($key, $val) = each($process)) { > foreach ($val as $k => $v) { unset($process[$key][$k]); > if (is_array($v)) { > $process[$key]

[PHP] Re: php.ini setting

2011-10-02 Thread Stephen
On 11-10-02 12:12 PM, Jim Giner wrote: Spoke to quickly - still having issues. While the .ini file in each of my appl. folders has magic quotes set to Off, my scripts are still escaping my input - obviously following the server's .ini file settings. Waiting for my hosters to get back to me. Yo