|
@@ -26,4 +26,23 @@ if (!$c) {
|
|
|
die();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+$insertQuery = "INSERT INTO status_kommentar_historie SELECT * FROM status_kommentar WHERE datum <= '{$datum}' ";
|
|
|
+$c = $dbh->query($insertQuery);
|
|
|
+
|
|
|
+if (!$c) {
|
|
|
+ echo $dbh->errorInfo();
|
|
|
+ die();
|
|
|
+}
|
|
|
+
|
|
|
+$deleteQuery = "DELETE FROM status_kommentar WHERE datum <= '{$datum}' ";
|
|
|
+$c = $dbh->query($deleteQuery);
|
|
|
+
|
|
|
+if (!$c) {
|
|
|
+ echo $dbh->errorInfo();
|
|
|
+ die();
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
echo "Erfolgreich abgeschlossen.\r\n";
|