$Edit['name'] = $_REQUEST['editpost_name'];
$Edit['message'] = $_REQUEST['editpost_message'];
mysql_query("UPDATE table SET name='".$Edit['name']."' WHERE id='".$EditID."'") or die(mysql_error());
mysql_query("UPDATE table SET message='".$Edit['message']."' WHERE id='".$EditID."'") or die(mysql_error());
mysql_query("UPDATE table SET name='".mysql_escape_string($Edit['name'])."', message='".mysql_escape_string($Edit['message'])."' = WHERE id='".mysql_escape_string($EditID)."'") or die(mysql_error());
Getran, we didn't say those things would make them work, but your query is written pretty sloppily as it is. As I said you will have to replace the mysql_query with die to see what query is being done that is screwing up, you haven't given us enough to go on yet.