Re: [PHP] help with storing multiple values in session variables.

2004-03-16 Thread Vimala S.P.
Yes encode() function worked perfectely fine. -vimala/. On Mon, 15 Mar 2004, Richard Davey wrote: > Hello Vimala, > > Monday, March 15, 2004, 11:55:47 AM, you wrote: > > VSP> Is there any way of passing unicode strings properly with href and get? > > I'm 99% sure you can pass unicode strings

Re: [PHP] help with storing multiple values in session variables.

2004-03-15 Thread Chris Shiflett
--- "Vimala S.P." <[EMAIL PROTECTED]> wrote: > Is there any way of passing unicode strings properly with href and get? You can pass anything as a URL variable if you URL encode it. That's what URL encoding is for: http://www.php.net/url_encode Hope that helps. Chris = Chris Shiflett - htt

Re: [PHP] help with storing multiple values in session variables.

2004-03-15 Thread Nitin Mehta
Arer you using session_destroy(), where your script ends... if it's not the case, try using cookies to destroy sessio after a period of time. Hope that helps.. Nitin - Original Message - From: "Vimala S.P." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 15, 2004 5:25 PM

Re: [PHP] help with storing multiple values in session variables.

2004-03-15 Thread David T-G
Vimala -- ...and then Vimala S.P. said... % % Hi, Hi! % ... % Is there any way of passing unicode strings properly with href and get? If Richard's suggestion of urlencode doesn't work (though I expect it to), you could also try base64_encode() to form your HREFs and then base64_decode what

Re: [PHP] help with storing multiple values in session variables.

2004-03-15 Thread Richard Davey
Hello Vimala, Monday, March 15, 2004, 11:55:47 AM, you wrote: VSP> Is there any way of passing unicode strings properly with href and get? I'm 99% sure you can pass unicode strings by simply URL Encoding them (see urlencode) before appending to the query string. Try it and see? -- Best regards