In mysql database , I find some data store like below:
a:6:{s:5:"title";s:43:"fgjfh";s:8:"province";s:6:"重庆";s:4:"city";s:9:"大渡口";s:8:"location";s:6:"fhfghf";s:9:"starttime";s:11:"09-02 12:00";s:7:"endtime";s:11:"09-02 16:00";}
feedback
|
|
That's a PHP serialized array. You serialized your array before putting it to the database. Look for Update: Probably your stored data (which is a hash actually) has dynamic fields, and it was too difficult for the creator or he/she didn't care/was lazy to do so/decided that's not important or simply that was not the use case. But you should consider to rethink your schema and create a correct (3NF) normalization. In this case you will have at least one table which can be like this:
And of course your you'll need the | |||||||||||||
feedback
|