https://bz.apache.org/bugzilla/show_bug.cgi?id=47950

--- Comment #12 from jacket <bkumaran...@gmail.com> ---
<?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: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to