Code:
function remove_comments_left($comment_author_email) {
global $wpdb;
global $default_comments_allowed;
$table_name = $wpdb->prefix . "gatornet";
$wpdb->query("INSERT INTO ".$table_name." (email, comments_left) VALUES ('".$comment_author_email."', '".$default_comments_allowed."' )");
}
add_action('comment_post', 'remove_comments_left');
Thanks!