Suppose I've the following.
$k= array(1,2,3,4,5);
Is there any way to pass the array in url such as process?choice=something?
Or we should use session instead?
Thanks, William
url_to_page?k[]=1&k[]=2&k[]=3
or
url_to_page?k[0]=1&k[1]=2
there is something like a 10 kilobyte limit for the length of your url but hey I wouldn't want to be passing a 10K array on the url.
hope this helps, stef
What is the point of that at all?
All you end up with is a huge URL which looks untidy!
I would use sessions, in fact, I do use sessions :o)
Any further help required, let me know.
Leon.