I can't figure this out. The first code works as far as inserting into a MySQL database with the !result error checking. The second with the error code commented out doesn't. I can't figure out why. Jeff Oien if ($M_First_Name) { $sql = "INSERT INTO $table_name (First_Name, Last_Name, Family_Position, Address, Address1, City, State, Zip, Email, Home_Phone, Work_Phone, Coop_Month, Timestamp) VALUES (\"$M_First_Name\", \"$M_Last_Name\", \"$MatherFamilyPosition\", \"$M_Address1\", \"$M_Address2\", \"$M_City\", \"$M_State\", \"$M_Zip\", \"$M_Email\", \"$M_H_Phone\", \"$M_W_Phone\", \"$coopmonth\", \"NOW()\")"; if(! $result = mysql_query($sql,$connection)) { print("ERROR ".mysql_errno().": ".mysql_error()."<br>\n$sql<br>\n"); } } ------------------------ if ($M_First_Name) { $sql = "INSERT INTO $table_name (First_Name, Last_Name, Family_Position, Address, Address1, City, State, Zip, Email, Home_Phone, Work_Phone, Coop_Month, Timestamp) VALUES (\"$M_First_Name\", \"$M_Last_Name\", \"$MatherFamilyPosition\", \"$M_Address1\", \"$M_Address2\", \"$M_City\", \"$M_State\", \"$M_Zip\", \"$M_Email\", \"$M_H_Phone\", \"$M_W_Phone\", \"$coopmonth\", \"NOW()\")"; // if(! $result = mysql_query($sql,$connection)) { // print("ERROR ".mysql_errno().": ".mysql_error()."<br>\n$sql<br>\n"); // } } -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]