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

5 lines
146 B
PHP

<?php // deletefile.php
if (!unlink('testfile2.new')) echo "Could not delete file";
else echo "File 'testfile2.new' successfully deleted";
?>