I've got a table on-screen build up of a 2d array
($array[$i][$n])
and basically I have that and some other things that need to be picked up by the script everytime it is loaded. ATM, instead of submitting the form to the page every time I'm using a button with an onclick set to goto the page again with appropriate &this=$that on the end of the url. This works fine for passing on 1 or 2 variables.
However, with this huge grid of upto 10x30 entries I don't see how I can get each entry onto the end of the url in any form.
Basically I see my options as somehow managing to get hold of the 2d array via $http_post_vars or something, using cookies to store the 2d array somehow, or using sessions to store the 2d array somehow.
I really am puzzled and I'd appreciate the voice of experience on these things =)
($array[$i][$n])
and basically I have that and some other things that need to be picked up by the script everytime it is loaded. ATM, instead of submitting the form to the page every time I'm using a button with an onclick set to goto the page again with appropriate &this=$that on the end of the url. This works fine for passing on 1 or 2 variables.
However, with this huge grid of upto 10x30 entries I don't see how I can get each entry onto the end of the url in any form.
Basically I see my options as somehow managing to get hold of the 2d array via $http_post_vars or something, using cookies to store the 2d array somehow, or using sessions to store the 2d array somehow.
I really am puzzled and I'd appreciate the voice of experience on these things =)