It came to my mind that is it possible to store more than one value inside one cell in a mysql table using php and then retrieve every value through php.I will provide an example to make it more clear.
Example:
Suppose, i have the first column of text type and the very first field of that column i.e. mysqltable[0][0]. Is there any way i can save multiple values inside this field in this way value1;value2;value3; and so on in the rest of the fields inside the column ?if yes, then how can i do this and retrieve the very same using php?
,separated string values (on fetching time explode by,and get all values in form of array). 2. you can save serialized array into the fields(on fetching time un-seriaialize it). 3.you can store json-encoded data (on fetching time decode it)