I am wondering what the proper name is for an array held in a string (string that holds an array).
Commonly used for storing tags or multiple variables in a database
EXAMPLE 1 (Image URLs for item):
url1,url2,url3
Example 2 (Video Tags): tag1,tag2,tag3
Example 3 (quests complete): 2,3,1,6,7,4
These strings would get converted into an array with an explode in PHP usually.
To clarify: What is the proper name for these types of strings?