Code:
dbi_query(dbc, "INSERT INTO table (blah) VALUES (variable)")
How can I put there working variable? I tried many ways:
Code:
dbi_query(dbc, "INSERT INTO table (blah) VALUES (variable)")
dbi_query(dbc, "INSERT INTO table (blah) VALUES (\"variable\")")
dbi_query(dbc, 'INSERT INTO table (blah) VALUES ("variable")')
It doesn't work. Please help me