I have a big list of PHP defines. I'm using it as a language file. I want to move language definations from that file to MySQL table. Is there some useful function that I could use?
Format in language file:
define("TXT_HELLO", "Hello!");
define("TXT_BYE", "Bye!");
Thanks in advance.