|
If this is the case, then your database design structure needs to be changed. It is best to use a special table to store these pictures, one record to save one picture, and each picture record has a parent code to follow other related records. For example, the record labeled 001 has 12 pictures. Then there is a parent class number in the picture table: parent_id=001, these pictures can be listed and displayed by querying the picture record with the number 001! |
|