Show Output
Closing a File in PHP
"; } echo "Now closing the file." . "
"; // Closing the file handle if(fclose($handle)){ echo "File closed successfully."; } } else{ echo "ERROR: File does not exist."; } ?>