There are a number of ways that you could do something like this.
Firstly - If I were you i'd use a MySQL DB and add each newitem into a seperate row - this is very easy to do.
But if you are desperate for the use of the static html pages then it could probably be done using the
fwrite()
function
here's a brief example :
$filename = "htmlpage.html";
$fp = fopen ( $filename, "w"0 or die ( "Couldn't open $filename" );
fwrite ( $fp, "The news you want entered\n" );
fclose ( $fp )
That should be it.... (hopefully)
Andy