Ive been struggeling with an issue for a while of turning a string into an array, but a multi dimentinal array. So for example:-
$sett["Settings.General.View.Scheme"] = 12;
$sett["Settings.General.IDE.Color"] = 15;
$sett["Settings.General"] = "Allowed";
to turn into
$sett["Settings"].["General"].["View"].["Scheme"] = 12;
$sett["Settings"].["General"].["IDE"].["Color"] = 15;
$sett["Settings"].["General"] = "Allowed";
Ive played around trying to get it to work with functions and for loops but cant get it working. Any ideas or pointers?
Regarding your comment in the testimonial - I have added comments to the code in case you have not seen them, that explain how the code works.
If you are stuck - feel free to post back with questions.