Hallo,
ich schreibe Werte in eine temporäre Tabelle:
Problem tritt hier auf:
INSERT INTO #lbs_temp_table (a, b, c, d, e, f, g, h, i, j, k, l) VALUES ('1','0', '0', '1','xxx', 'yyy','1', '0','1','wenn's klappt','4','8')Error in query Insert
Das Problem ist das ' bei "wenn's klappt". Was kann ich tun?
ich schreibe Werte in eine temporäre Tabelle:
PHP:
INSERT INTO #lbs_temp_table (a, b, c, d, e, f, g, h, i, j, k, l) VALUES ('".$a."','".$b."', '".$c."', '".$d."','".$e."', '".$f."','".$g."', '".$h."','".$i."','".$j."','".$k."','".$l."')
Problem tritt hier auf:
INSERT INTO #lbs_temp_table (a, b, c, d, e, f, g, h, i, j, k, l) VALUES ('1','0', '0', '1','xxx', 'yyy','1', '0','1','wenn's klappt','4','8')Error in query Insert
Das Problem ist das ' bei "wenn's klappt". Was kann ich tun?
Zuletzt bearbeitet: