Hello Friends I Have a Problem in my Function. I have created a Recursion Function in PHP and also Created an Array. I am having trouble in storing this Recursion Function Value in Array. Can anyone help me with this. Thanks
Put the array into a session to store and retrieve? either that or pass the array as a parameter of the function
Either pass by reference OR return the output of the function and assign it into array OR store array at some global location which can be accessed easily in any of the recursion call.