I have a litte problem, here is what I want to do:
My php file get the following data:
(:art 1)
name=Fredrik
address=Street 59
phone=94994949
And I want to turn it into this:
🙁Part 2)
$t[name] = "Fredrik";
$t[name][address] = "Street 59";
$t[name][phone] = "94994949";
I care about the first part, I'm just wondering how I can dynamically?