OK, let me put what I have and we can go from there. Please type your replies slowly, though, as I'm not very good at this.

And please do say much about the style. This is patchwork and I sure that it could be improved.
This is what I have to process my form:
[php]<?
$date=$_POST['date'];
$news=$_POST['news'];
mysql_connect("localhost", "db_user", "password") or die(mysql_error());
mysql_select_db("db_name") or die(mysql_error());
mysql_query("INSERT INTO `news` VALUES ('$date', '$news')");
?>[/php]
That posts whatever is entered in the form, and works like it should.
To display the db records:
[php]<?php
// Create the database access variables:
$hostname = "localhost";
$database = "db_name";
$username = "db_user";
$password = "password";
// Open a connection to the server
$connection = mysql_connect($hostname, $username, $password) or die ("Unable to connect to the DB Server!");
// Select the database
mysql_select_db($database) or die ("Can't select database!");
// Show data query
$query = 'SELECT * FROM `news` ORDER BY `date` ASC LIMIT 0, 30';
// execute query
$result = mysql_query($query) or die ("Error in query: $query. <br>".mysql_error());
echo '<table width="800" cellspacing="0" cellpadding="5">'
. '<tr>'
. '<td>date</td>'
. '<td>news</td>'
. '</tr>';
while($row = mysql_fetch_row($result)) {
echo "<tr>";
echo "<td>". $row[0]. "</td>";
echo "<td>". $row[1]. "</td>";
echo "</tr>";
}
echo '</table>';
?>[/php]
Again, it works, though it may not be pretty.
And then to delete entries:
[php]<?php
$hostname = "localhost";
$database = "db_name";
$username = "db_user";
$password = "password";
$connection = mysql_connect($hostname, $username, $password) or die ("Unable to connect to the DB Server!");
mysql_select_db($database) or die ("Can't select database!");
$result = mysql_query('DELETE FROM `news` WHERE `date`<CURDATE()') or die ("Error in query: $query. <br>".mysql_error());
?>[/php]
Only works with date in YYYY-MM-DD format.
I wouldn't care to start over from scratch, but like I said, I'm new and will need step by step instructions. I do thank both of you for your help, its just that I don't know how to use what you've told me. I've posted my code so that you can see where I'm at, and tell me where I should go from here. Thanks again.