I have a list of variables in an array and I want to effectively create an array for each of these named headings.
ie list is say name, title, location and I want to call the variable array $[name][$i], $[location][$i], $[title][$i], and fill them via a loop $[name][$i]=whatever.
I know its...