5 lines
150 B
PHP
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'";
|
|
?>
|