This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql12d/kopieren.php
T

14 lines
429 B
PHP

<?php
$source = "gaestebuch.csv";
$destination = "gaestebuch.bak";
if(@copy($source, $destination)) {
echo "Letzte Änderung und Modifizierung " . "der Quelldatei: " . filemtime($source) . ", " . filectime($source) . "<br>";
echo "Letzte Änderung und Modifizierung " . "der Quelldatei: " . filemtime($destination) . ", " . filectime($destination) . "<br>";
} else {
echo "Fehler beim Kopieren";
}
?>