The error message I got:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to
You must remove or replace the quotes of the column names by backticks (`). Since "group" is a keyword, you have to use backticks:
INSERT INTO articles (`word`, `group`, `selfnote`) VALUES (....);