• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

MYSQL question

how do i store an array of string into the MYSQL database?
how to create the database? and how to read into array form from the database?
 
If the number of the elements in the array is the same, it's easy (just have several varchar or blob definitions)
If not, then you would need to put them into one big string yourself, and save them as a blob.
When getting them back, use something like strtok to take the string apart again.
 
Back
Top