Files
lpmj6/07/copyfile.php
T
RobinNixon 188af22a54 Final
2021-04-18 15:31:38 +01:00

5 lines
150 B
PHP

<?php // copyfile.php
copy('testfile.txt', 'testfile2.txt') or die("Could not copy file");
echo "File successfully copied to 'testfile2.txt'";
?>