https://bz.apache.org/bugzilla/show_bug.cgi?id=47950
--- Comment #11 from jacket <[email protected]> --- <?php $file = 'people.txt'; // Open the file to get existing content $current = file_get_contents($file); // Append a new person to the file $current .= "John Smith\n"; // Write the contents back to the file http://sattamarketkalyan.com/ file_put_contents($file, $current); ?> -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
