This is the new line at the bottom of the file.

'; // Open the file for appending $file = fopen($filename, 'a'); // Append the new line fwrite($file, $newLine); // Close the file fclose($file); echo "Line appended successfully!"; ?> //if different directory This is the new line at the bottom of the file.

'; // Open the file for appending $file = fopen($filename, 'a'); if ($file) { // Append the new line fwrite($file, $newLine); // Close the file fclose($file); echo "Line appended successfully!"; } else { echo "Failed to open the file for appending."; } ?> // if you want to change thx with thank in the file