[FX.php List] Trying to read back an array

Leo R. Lundgren leo at finalresort.org
Fri Sep 17 07:53:19 MDT 2010


You're always welcome!

I second what Dale said. It seems you want to store stuff in the session per recordId. This would be a nice structure for that:

	$_SESSION[$recid]['type']
	$_SESSION[$recid]['description']
	...


17 sep 2010 kl. 15.49 skrev Bob Patin:

> OH! I see now... I didn't notice I'd done that.
> 
> I understand now... oops... duh... started way too early this morning.
> 
> Thanks as always... :)
> 
> Best,
> 
> Bob
> 
> 
> 
> On Sep 17, 2010, at 8:47 AM, Leo R. Lundgren wrote:
> 
>> You store using this key in the array:
>> 
>> 	$_SESSION['description['.$recid.']']
>> 
>> The key in the array will be "description[123]" for a recid of 123.
>> 
>> You then try to fetch it using this:
>> 
>> 	$_SESSION['description'.$recid]
>> 
>> Which is the equivalent of a key "description123" for a recid of 123.
>> 
>> So you are asking for the value in the array at place (key) foo, when having stored it at place (as key) bar. Or the reverse :)
> 
> _______________________________________________
> FX.php_List mailing list
> FX.php_List at mail.iviking.org
> http://www.iviking.org/mailman/listinfo/fx.php_list



-|



More information about the FX.php_List mailing list