mysql_insert in mehrere Tabellen

Arndtinho

Erfahrenes Mitglied
Hallo,

ich habe 3 mysql_insert-Befehle:
Code:
$id = "10";
$text1 = "1.text";
$text2 = "2.text";
$text3 = "3.text";

$sql_insert_1 = "INSERT INTO tab1 ( id, descr ) VALUES ( '$text1', '$id' )";
$sql_insert_2 = "INSERT INTO tab2 ( id, descr ) VALUES ( '$text2', '$id' )";
$sql_insert_3 = "INSERT INTO tab3 ( id, descr ) VALUES ( '$text3', '$id' )";
Ist es möglich, daraus einen Insert-String zu machen und den Insert-Befehl nur einmal an die DB schicken?

Gruß
Arndtinho
 
Zurück