| 
	
 | 
 Posted by Rik on 01/23/07 08:03 
Jerry Stuckle wrote: 
> Rik wrote: 
>> drako wrote: 
>>> I got this working in the end. It seemed that having the following 
>>> variables caused some clash: 
>>> 
>>> $_POST['increment'] 
>>> $_SESSION['increment'] 
>>> 
>>> once I changed this to $_SESSION['increments'] (notice the plural), 
>>> then it was creating arrays within the session variable as expected, 
>>> and I can now run it through a 'foreach' loop and 'array_multisort' 
>>> in order to process the array data. 
>> 
>> Well, you're copying the POST to the SESSION somewhere in your code 
>> in that case, as it is not a PHP feature. This works fine: 
> 
> Or, maybe register_globals is enabled? 
 
That would not overwrite the $_POST & $_SESSION arrays, and even then, the 
$_SESSION would win the $increment, and the $_POST value would be 
discarded. 
--  
Rik Wasmus
 
  
Navigation:
[Reply to this message] 
 |