I copied and pasted wrong. Here is what I should have posted.
updated code based on suggestions that erases:
$DB[project_name]=addslashes($POST[project_name]);
$DB[category]=addslashes($POST[category]);
$DB[customer]=addslashes($POST[customer]);
$DB[request_date]=addslashes($POST[request_date]);
$DB[response_date]=addslashes($POST[response_date]);
$DB[responder]=addslashes($POST[responder]);
$DB[scope]=addslashes($POST[scope]);
$DB[support]=addslashes($POST[support]);
$DB[requestor]=addslashes($POST[requestor]);
$DB[dev]=addslashes($POST[dev]);
$DB[planned_start]=addslashes($POST[planned_start]);
$DB[actual_start]=addslashes($POST[actual_start]);
$DB[planned_complete]=addslashes($POST[planned_complete]);
$DB[actual_complete]=addslashes($POST[actual_complete]);
$DB[designer1]=addslashes($POST[designer1]);
$DB[designer2]=addslashes($POST[designer2]);
$DB[designer3]=addslashes($POST[designer3]);
$DB[designer4]=addslashes($POST[designer4]);
$DB[status]=addslashes($POST[status]);
$DB[est]=addslashes($POST[est]);
$DB[id] = $_POST[id];
$sql = "UPDATE PROJECT_LIST
SET PROJECT_NAME = '$DB[project_name]',
CATEGORY = '$DB[category]',
CUSTOMER = '$_DB[customer]',
REQUEST_DATE = '$_DB[request_date]',
RESPONSE_DATE = '$_DB[response_date]',
RESPONDER = '$_POST[responder]',
SCOPE = '$_DB[scope]',
SUPPORT_NEEDED = '$_DB[support]',
REQUESTOR = '$_DB[requestor]',
REQ_DELIVERY_DATE = '$_DB[dev]',
PLANNED_START = '$_DB[planned_start]',
ACTUAL_START = '$_DB[actual_start]',
PLANNED_COMPLETE = '$_DB[planned_complete]',
ACTUAL_COMPLETE = '$_DB[actual_complete]',
DESIGNER1 = '$_DB[designer1]',
DESIGNER2 = '$_DB[designer2]',
DESIGNER3 = '$_DB[designer3]',
DESIGNER4 = '$_DB[designer4]',
STATUS = '$_DB[status]',
DEVEL_EST = '$_DB[est]'
WHERE ID = '$DB[id]'";
$result = mysql_query($sql) or die (mysql_error());
if (isset($result)) {
echo "<HTML>
<HEAD>
<TITLE>Modify a Project</TITLE>
</HEAD>
<BODY>
<h1>The new record looks like this:</h1>
<P><strong>Project Name:</strong> ".stripslashes($_POST['project_name'])."
<P><strong>Category:</strong> ".stripslashes($_POST['category'])."
<P><strong>Requestor:</strong> ".stripslashes($_POST['requestor'])."
<P><strong>Customer:</strong> ".stripslashes($_POST['customer'])."
<P><strong>Request Date:</strong> ".stripslashes($_POST['request_date'])."
<P><strong>Response Date:</strong> ".stripslashes($_POST['response_date'])."
<P><strong>Project Manager:</strong> ".stripslashes($_POST['responder'])."
<P><strong>Requested Develivery Date:</strong> ".stripslashes($_POST['dev'])."
<P><strong>Development Estimate:</strong> ".stripslashes($_POST['est'])."
<P><strong>Planned Start:</strong> ".stripslashes($_POST['planned_start'])."
<P><strong>Actual Start:</strong> ".stripslashes($_POST['actual_start'])."
<P><strong>Planned Completion:</strong> ".stripslashes($_POST['planned_complete'])."
<P><strong>Actual Completion:</strong> ".stripslashes($_POST['actual_complete'])."
<P><strong>Designer 1:</strong> ".stripslashes($_POST['designer1'])."
<P><strong>Designer 2:</strong> ".stripslashes($_POST['designer2'])."
<P><strong>Designer 3:</strong> ".stripslashes($_POST['designer3'])."
<P><strong>Designer 4:</strong> ".stripslashes($_POST['designer4'])."
<P><strong>Status:</strong> ".stripslashes($_POST['status'])."
<P><strong>Scope:</strong> ".stripslashes($_POST['scope'])."
<P align=center><a href=\"default.htm\">Return to Menu</a></p>
</BODY>
</HTML>";
} else {
echo "Some sort of error has occurred.</p>";
}
?>
original code:
$sql = "UPDATE PROJECT_LIST SET PROJECT_NAME = '$POST[project_name]',
CATEGORY = '$POST[category]',
CUSTOMER = '$POST[customer]',
REQUEST_DATE = '$POST[request_date]',
RESPONSE_DATE = '$POST[response_date]',
RESPONDER = '$POST[responder]',
SCOPE = '$POST[scope]',
SUPPORT_NEEDED = '$POST[support]',
REQUESTOR = '$POST[requestor]',
REQ_DELIVERY_DATE = '$POST[dev]',
PLANNED_START = '$POST[planned_start]',
ACTUAL_START = '$POST[actual_start]',
PLANNED_COMPLETE = '$POST[planned_complete]',
ACTUAL_COMPLETE = '$POST[actual_complete]',
DESIGNER1 = '$POST[designer1]',
DESIGNER2 = '$POST[designer2]',
DESIGNER3 = '$POST[designer3]',
DESIGNER4 = '$POST[designer4]',
STATUS = '$POST[status]',
DEVEL_EST = '$POST[est]' WHERE ID = '$_POST[id]'";
$result = mysql_query($sql) or die (mysql_error());
if (isset($result)) {
echo "<HTML>
<HEAD>
<TITLE>Modify a Project</TITLE>
</HEAD>
<BODY>
<h1>The new record looks like this:</h1>
<P><strong>Project Name:</strong> ".stripslashes($_POST['project_name'])."
<P><strong>Category:</strong> ".stripslashes($_POST['category'])."
<P><strong>Requestor:</strong> ".stripslashes($_POST['requestor'])."
<P><strong>Customer:</strong> ".stripslashes($_POST['customer'])."
<P><strong>Request Date:</strong> ".stripslashes($_POST['request_date'])."
<P><strong>Response Date:</strong> ".stripslashes($_POST['response_date'])."
<P><strong>Project Manager:</strong> ".stripslashes($_POST['responder'])."
<P><strong>Requested Develivery Date:</strong> ".stripslashes($_POST['dev'])."
<P><strong>Development Estimate:</strong> ".stripslashes($_POST['est'])."
<P><strong>Planned Start:</strong> ".stripslashes($_POST['planned_start'])."
<P><strong>Actual Start:</strong> ".stripslashes($_POST['actual_start'])."
<P><strong>Planned Completion:</strong> ".stripslashes($_POST['planned_complete'])."
<P><strong>Actual Completion:</strong> ".stripslashes($_POST['actual_complete'])."
<P><strong>Designer 1:</strong> ".stripslashes($_POST['designer1'])."
<P><strong>Designer 2:</strong> ".stripslashes($_POST['designer2'])."
<P><strong>Designer 3:</strong> ".stripslashes($_POST['designer3'])."
<P><strong>Designer 4:</strong> ".stripslashes($_POST['designer4'])."
<P><strong>Status:</strong> ".stripslashes($_POST['status'])."
<P><strong>Scope:</strong> ".stripslashes($_POST['scope'])."
<P align=center><a href=\"default.htm\">Return to Menu</a></p>
</BODY>
</HTML>";
} else {
echo "Some sort of error has occurred.</p>";
}