Hi, guys!
I'm trying to make an online dictionary for my own purposes (I know there are some other dictionaries, but they don't have what I need) and I have a file with words in the following format:
戚谊
戚誼
[m1][b]qīyì[/b][/m]
[m2]some translation[/m]
三州府
[m1][b]sānzhōufǔ[/b][/m]
[m2]translation #2[/m]
First two lines are the same character, but traditional chinese character and simplified, the third line is transcription, the forth line is the meaning of the character (translation). How can I store this data in proper columns of mysql database? (columns: simplified_character, trad_character, translation, transcription, etc)
Thank you!