backup.php 749 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. header('Access-Control-Allow-Origin: *');
  3. header('Cache-Control: no-cache, must-revalidate');
  4. header('Content-type: application/json');
  5. $datum = date("Y-m-d", strtotime("-3 month"));
  6. $dbh = new PDO("mysql:host=localhost;dbname=tasks", "root", "gc01mysql");
  7. $dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
  8. echo "Daten ab {$datum} werden archiviert.\r\n";
  9. $insertQuery = "INSERT INTO status_meldung_historie SELECT * FROM status_meldung WHERE datum <= '{$datum}' ";
  10. $c = $dbh->query($insertQuery);
  11. if (!$c) {
  12. echo $dbh->errorInfo();
  13. die();
  14. }
  15. $deleteQuery = "DELETE FROM status_meldung WHERE datum <= '{$datum}' ";
  16. $c = $dbh->query($deleteQuery);
  17. if (!$c) {
  18. echo $dbh->errorInfo();
  19. die();
  20. }
  21. echo "Erfolgreich abgeschlossen.\r\n";