How to post this array into another page.
Array
(
[0] => Array
(
[0] => Client Name
[1] => Task ID
[2] => Sub-Task Id
[3] => Task Specification
[4] => Billable Minutes
[5] => Total Spent Time
[6] => Handled By
)
[1] => Array
(
[0] => Client1
[1] => TAS1
[2] => -
[3] => 90
[4] => 01:20:51
[5] => Vinodkumar M
)
[2] => Array
(
[0] => Client2
[1] => TAS2
[2] => -
[3] => 60
[4] => 02:04:42
[5] => Vinodkumar M
)
)
implodefunction and then use it in another page. – Neeraj T Dec 22 '12 at 7:33session_start()in both pages? (In the page where you're storing it in session and the one in which you're trying to retrieve it?) – asprin Dec 22 '12 at 7:38