Quote:
Originally Posted by Stefan
Assigning one array to another is working fine.
When you only get stuff in data[0] or data then it is probably not an array, eventually the item data is not a correct comma-separated list (manually edited?). It must be text,"item name",text instead of text,item name,text
|
Yeah if you have something like this in the file:
varname="text,text,text"
It will give you (in GS2 terms): varname = {{"text", "text", "text"}};
As you can see that is an array inside an array so what you want is:
varname=text,text,text