[PHP] Problem adding value to session array

2003-07-17 Thread Matt Palermo
I have a session array that stores some values that I set. It holds all the inserted values, unless the value I want to insert has a space in it, then it only inserts the characters before the space into the array. It looks like this: // This works $sessionArray[1] = nospace; echo result:

Re: [PHP] Problem adding value to session array

2003-07-17 Thread Jason Wong
On Thursday 17 July 2003 22:06, Matt Palermo wrote: I have a session array that stores some values that I set. It holds all the inserted values, unless the value I want to insert has a space in it, then it only inserts the characters before the space into the array. It looks like this: //