HTML drop down or select box for prefix or English honorifics
Many forms need to add or show the English honorifics. The uses of English honorifics select box in the billing software, hotel/restaurant software, GST filling the form and financial and banking software or web applications.
Standard list of values for a contact's name prefix drop down box
The English honorifics is used for small software/web application and also large software/web application in many sectors.
Copy following HMTL code in your webpage.
<select name="name_prefix" id="name_prefix">
<option value="Ms">Ms</option>
<option value="Miss">Miss</option>
<option value="Mrs">Mrs</option>
<option value="Mr">Mr</option>
<option value="Master">Master</option>
<option value="Fr">Father (Fr)</option>
<option value="Rev">Reverend (Rev)</option>
<option value="Dr">Doctor (Dr)</option>
<option value="Atty">Attorney (Atty)</option>
<option value="Hon">Honorable (Hon)</option>
<option value="Prof">Professor (Prof)</option>
<option value="Pres">President (Pres)</option>
<option value="VP">Vice President (VP)</option>
<option value="CO">Chief Officer (CO)</option>
<option value="CTO">Cheif Technical Officer (CTO)</option>
<option value="CEO">Cheif Executive Officer (CEO)</option>
<option value="COO">Cheif operating Officer (COO)</option>
<option value="Gov">Governor (Gov)</option>
<option value="Ofc">Officer (Ofc)</option>
<option value="Capt">Captain</option>
<option value="Chief">Chief</option>
<option value="Cmdr">Commander</option>
<option value="Col">Colonel</option>
<option value="Gen">General</option>
<option value="Gov">Governor</option>
<option value="Maj">Major</option>
<option value="MSgt">Major/Master Sergeant</option>
<option value="Prince">Prince</option>
</select>
Example of Name Prefix/English Honorifics Drop down/Select Box
Name Prefix Options:
- Ms - M
- Miss - Miss
- Mrs - Mrs
- Mr - Mr
- Master - Master
- Fr - Father (Fr)
- Rev - Reverend (Rev)
- Dr - Doctor (Dr)
- Atty - Attorney (Atty)
- Hon - Honorable (Hon)
- Prof - Professor (Prof)
- Pres - President (Pres)
- VP - Vice President (VP)
- CO - Chief Officer (CO)
- CTO - Cheif Technical Officer (CTO)
- CEO - Cheif Executive Officer (CEO)
- COO - Cheif operating Officer (COO)
- Gov - Governor (Gov)
- Ofc - Officer (Ofc)
- Capt - Captain
- Chief - Chief
- Cmdr - Commander
- Col - Colonel
- Gen - General
- Gov - Governor
- Maj - Major
- MSgt - Major/Master Sergeant
- Prince - Prince
Database structure for the name prefix field
Create name prefix master table:
CREATE TABLE `tbl_name_prefix` (
`name_prefix_id` tinyint(3) UNSIGNED NOT NULL,
`name_prefix_val` varchar(15) NOT NULL
`name_prefix` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Stored_Name_Prefix_Details';
Insert SQL to insert payment type in the databsae:
INSERT INTO `tbl_name_prefix` (`name_prefix_id`, `name_prefix_val`, `name_prefix`) VALUES
(1, 'Ms', 'Ms'),
(2, 'Miss', 'Miss'),
(3, 'Mrs', 'Mrs'),
(4, 'Mr', 'Mr'),
(5, 'Master', 'Master'),
(6, 'Fr', 'Father (Fr)'),
(7, 'Rev', 'Reverend (Rev)'),
(8, 'Dr', 'Doctor (Dr)'),
(9, 'Atty', 'Attorney (Atty)'),
(10, 'Hon', 'Honorable (Hon)'),
(11, 'Prof', 'Professor (Prof)'),
(12, 'Pres', 'President (Pres)'),
(13, 'VP', 'Vice President (VP)'),
(14, 'CO', 'Chief Officer (CO)'),
(15, 'CTO', 'Cheif Technical Officer (CTO)'),
(16, 'CEO', 'Cheif Executive Officer (CEO)'),
(17, 'COO', 'Cheif operating Officer (COO)'),
(18, 'Gov', 'Governor (Gov)'),
(19, 'Ofc', 'Officer (Ofc)'),
(20, 'Capt', 'Captain'),
(21, 'Chief', 'Chief'),
(22, 'Cmdr', 'Commander'),
(23, 'Col', 'Colonel'),
(24, 'Gen', 'General'),
(25, 'Gov', 'Governor'),
(26, 'Maj', 'Major'),
(27, 'MSgt', 'Major/Master Sergeant'),
(28, 'Prince', 'Prince');
Comments
Post a Comment
Thanks for the comment and review. We will connect you soon.