Greetings,
I have data stored on mysql with delimiter "," in 1 table. I have rows and column stored on database too. Now i have to output the data using rows and column number stored on database to draw the table.
Rows and column number are user input, so it may varies.
Let say, there is number 3 on column and 3 on rows.
I need to do it like display like,
|___d1__|___d2__|___d3__|
|___d4__|___d5__|___d6__|
|___d7__|___d8__|___d9__|
Where d1-d9 would be the data stored on mysql database with delimiter "," in one table.
Thanks for helping me.