You just simply have a table, which only consists out of one row and some columns that represent settings:
CREATE TABLE settings (
accept_all_citizenship CHAR(3) DEFAULT "yes",
ud_not_citizenship LONGTEXT,
... And some other cols....
And just simply update that with the values returned from the form. Note that the names of your radio-inputs are weird, shouldn't they be 'accept_all_citizenship', and then the values 'yes' and 'no'?
I assume you know how to (My)SQL and PHP works with form handling and executing queries, else I refer you to the reference: http://php.net
~G