php insert line to file code example Example: append new line php $data = 'some data'.PHP_EOL; $fp = fopen('somefile', 'a'); fwrite($fp, $data);