LPMJ Example 7-10 (Click on the icon to view the source for copy and pasting)
<?php // deletefile.php
if (!unlink('testfile2.new')) echo "Could not delete file";
else echo "File 'testfile2.new' successfully deleted";
?>