Does anyone know how to delete the last space or last line a text file?
put the file into an array. count all the lines in the file.
$lines = count($array);
then do a for 0 to $lines
for
$lines-1;
print it all to a file and your done.