PHP - File Handling
What will be the output of this PHP code?
$file = fopen('test.txt', 'a');
fwrite($file, "Hello\n");
fclose($file);
echo file_get_contents('test.txt');