PHP - File Handling
Consider this PHP code snippet:
What will happen if "data.txt" already exists?
$file = fopen("data.txt", "x");
fwrite($file, "Data");
fclose($file);
echo file_get_contents("data.txt");What will happen if "data.txt" already exists?
