'I want to know about sending array values from one page to another
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..
Solution 1:[1]
Save it in the $_SESSION variable like this:
$_SESSION['data'] = array(array(1,2),array(3,4));
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | teuneboon |