I have this old posts database that looks like this
[id title content tags]
---------------------------------------
[1 PHP Post LoremIpsum 1 ]
[2 CSS Post LoremIpsum 2 ]
The tags were made badly since i knew less about MYSQL and PHP, And the table tags is like this
[id tags ]
-------------------------
[1 PHP, PDO, MYSQL]
[1 CSS, CSS3, LESS]
How can i turn this table from its form into this new form
[id tag ]
--------------
[1 PHP ]
[1 PDO ]
[1 MYSQL]
[2 CSS ]
[2 CSS3 ]
[2 LESS ]