Thanks for your help; I do appreciate it so much. Here is my other code:
$db = mysql_connect("localhost", $dbuser, $dbpass);
mysql_select_db($dbname, $db);
$sql="INSERT INTO MailingList'.'Mailing'('Email', 'DateAdded')
VALUES('$_POST[Email]',CURDATE())";
mysql_close($db);
1) I understand what you are saying, but unsure how to fix it. I changed the main statement some last night after posting. Hopefully I did not make it worse.
2) As you can see I am passing Curdate() in for DateAdded now and that seems to be working although since the data base is not updating, I am not sure yet. The DateAdded field is a date type that I set in phpadmin.
Thanks again for your help,
Joanne