"; } // Write an array to a file $friends = array("Duh", "Huh", "Wacky"); $content = implode("\n", $friends); // join elements of an array with a \n file_put_contents("sample-data3.txt", $content); ?>