Voll Upload SGD Fachinformatiker PHP
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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";
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user