How would you go about storing an array in a MySQL database?
I'm aiming to store a two-dimensional array. One sub array would have strings of text in it, and the other would have timestamps corresponding to when the strings of text were posted.
I would eventually add deleting of old strings, and adding of new ones, but right now I'm wondering how on earth you storey arrays in MySQL.
I tried storing it as a VARCHAR slot, but soon realised that this didn't work. Does anyone have any soloutions/tips?