Hallo alle die Online sind,
ich habe da mal eine Frage wenn ich mit einer php-datei eine install.php erstellen möchte:
Gibt es für INSERT INTO das gleiche?
zum Beispiel:
oder geht das anders oder gar nicht?
Danke an alle im vorraus Loddar1
ich habe da mal eine Frage wenn ich mit einer php-datei eine install.php erstellen möchte:
PHP:
"CREATE TABLE IF NOT EXISTS `tabelle` (
`id` int(4) unsigned NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`mail` varchar(50) NOT NULL,
`ort` varchar(50) NOT NULL,
PRIMARY KEY (`id`));
";
"INSERT INTO `tabelle` VALUES (1, 'Max', 'info@domain.de', 'Berlin'); ";
"INSERT INTO `tabelle` VALUES (2, 'Horst', 'horst@domain.de', 'Hamburg'); ";
zum Beispiel:
PHP:
"INSERT INTO IF NOT EXISTS `tabelle` VALUES (1, 'Max', 'info@domain.de', 'Berlin'); ";
"INSERT INTO IF NOT EXISTS `tabelle` VALUES (2, 'Horst', 'horst@domain.de', 'Hamburg'); ";
oder geht das anders oder gar nicht?
Danke an alle im vorraus Loddar1