Nieuw lid |
|
Goedemiddag allemaal,
Ik heb de volgende vraag.
Ik probeer met php meerdere inserts in verschillende tabbellen in te voeren en dan allemaal in 1 query.
Dat zit er ongeveer zo uit:
INSERT INTO tabel1 VALUES ( '', 'Naam', 'Email', 'Website' );
INSERT INTO tabel2 VALUES ( '', 'Pagina', 'IP' );
INSERT INTO tabel1 VALUES ( '', 'Naam', 'Email', 'Website' ); INSERT INTO tabel2 VALUES ( '', 'Pagina', 'IP' );
En nu krijg ik de volgende error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; INSERT INTO tabel2 VALUES ( '', ' at line 1
You have an error IN your SQL syntax; CHECK the manual that corresponds TO your MySQL server version FOR the RIGHT syntax TO USE near '; INSERT INTO tabel2 VALUES ( '', ' at line 1
Is het nou echt nodig om voor elke query een PHP.net: mysql_query aan te roepen ?
Want met phpMyAdmin kan het ook gewoon zoals ik het hierboven uitvoer.
Mvg,
Marc
|