If you know what the value will normally be, you may set it when you create the table,
Create Table SomeName (
country_english char(30) not null default='English'
..
..
)
Or, you can put a hidden field in the form:
<input type="hidden" name="country_english" value="English">
and that will do it.
Just to make it clear, if you don't specifically mention the field when you do the update, then the default will be assigned. If you specify fieldName = '' then the value will be blank instead.
Sam