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