开发者

I want to know about sending array values from one page to another

开发者 https://www.devze.com 2023-02-11 21:58 出处:网络
I want to know how to send a filled 2d array from one page to another in php. After filling the array in 开发者_开发问答page 1 I want to use the array in page 2.Can you suggest me the easiest way..Sav

I want to know how to send a filled 2d array from one page to another in php. After filling the array in 开发者_开发问答page 1 I want to use the array in page 2.Can you suggest me the easiest way..


Save it in the $_SESSION variable like this:

$_SESSION['data'] = array(array(1,2),array(3,4));
0

精彩评论

暂无评论...
验证码 换一张
取 消