View Single Post
  #13  
Old 06-07-2007, 12:26 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Stefan View Post
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
__________________
Do it with a DON!
Reply With Quote