Thread: get array
View Single Post

  #2 (permalink)  
Old 11-06-2006
Erwin Moller
 
Posts: n/a
Default Re: get array

kirke wrote:

> Hi,
> I have two arrays in previous page and use the arrays in next page.
> (Action page)
> how can I do this?
>
> Thank you


put them in a session?
$_SESSION["someArr"] = $someArr;

or post them to the next page via post (form) or via GET.
This involves some encoding of the array.

Session is probably the easiest way to go.

Regards,
Erwin Moller

Reply With Quote