Is it possible to store an array in a mysql database? I would like to update it and modify it? Just don't know if it is possible.
HI,
sure it is possible, just use the serialize function to make a string out of your array before writing ti to a table and after loading it use unserialize to make an array again.