Well, there is a difference between writing and appending. Writing will overwrite the old contents. Appending will put it at the end.
if($fp = fopen($file, 'a'))
{
flock($fp, 2);
fwrite($fp, $_POST[textarea]);
flock($fp, 3);
fclose($fp);
}
that will append it. Look up the functions in the manual