This what I have.
<html><body>
<h4>Song Form</h4>
<form method="post">
Song: <input name="song" type="text" />
<input type="submit" value="Submit" />
</form>
<?php
$song = $_POST['song'];
$fh = fopen("playlist.html", "a");
fputs($fh, "$song
\r\n");
fclose($fh);
?>
</body></html>
It works but need it to add a number for each post and it will add the
when the webpage is opened even if nothing is posted.
Donnie