how do i add lines to a text file?
tia๐
$WhichFile = "somefile.dat"; $NewRow = "something"; $NewRow .= "\n"; $fp = fopen($WhichFile,"a+"); fputs($fp, $NewRow); fclose($fp);
cheers big ears ๐