Maybe this is a stupid question but if somebody could help.
How do I write a variable into mysql database?
If I try to...
INSERT INTO table (column1, column2, column3, ...)
VALUES (1, 2, 3);
... everything works
but when I use variables like...
INSERT INTO table (column1, column2, column3, ...)
VALUES (a, b, c);
... I will get an error.