PHP - File Handling
Find the bug in this PHP code:
$file = fopen('notes.txt', 'w');
fwrite($file, "Note 1");
// forgot fclose
echo filesize('notes.txt');