Files
lpmj6/7/08.php
T
RobinNixon 0335342e00 First Draft
First Draft of the Example Files
2020-12-10 13:21:38 +00:00

6 lines
163 B
PHP

<?php // copyfile2.php
if (!copy('testfile.txt', 'testfile2.txt'))
echo "Could not copy file";
else echo "File successfully copied to 'testfile2.txt'";
?>