hi,
hab ein kleines problem. ich möchte in einem backup script verschiedene tabellen sichern, die einen von der hauptseite und die anderen von eimem script.
mit folgender switch anweisung möchte ich selectieren welche tabellen gesichert werden.
case 1 und case 3 funktionieren auch ohne probleme. nur bei case 2, also mit dem not like 'tm_%' bekomme ich eine fehlermeldung.
[Local] FEHLER 1064: 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 'not like "tm_%"' at line 1
irgend jemand ne idee, was da der fehler sein könnte?
hab ein kleines problem. ich möchte in einem backup script verschiedene tabellen sichern, die einen von der hauptseite und die anderen von eimem script.
mit folgender switch anweisung möchte ich selectieren welche tabellen gesichert werden.
PHP-Code:
switch ($ABselectdb){
case "1":
$result = mysql_query("show tables from $dbname");
break;
case "2":
$result = mysql_query("show tables from $dbname not like 'tm_%'");
break;
case "3":
$result = mysql_query("show tables from $dbname like 'tm_%'");
break;
}
[Local] FEHLER 1064: 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 'not like "tm_%"' at line 1
irgend jemand ne idee, was da der fehler sein könnte?
Kommentar