Make a form that asks for a partial national name. For example, I might type in "United". Look up all nations who's name contains that string. I should find "United States", "United Kingdom", and "United Arab Emerates". Print in a nice HTML table the name, pop, area, map, and flag of the nation. The flag of each nation can be found using the world-o-meter. For example, the United Arab Emerates has the code "ae" it's flag is at https://www.worldometers.info/img/flags/small/tn_us-flag.gif it's map is at https://www.worldometers.info/img/maps_c/US-map.gif Note: One of those was lower case, the other upper case. The following SQL query works. select code from nations where name rlike ".*United.*"; Points: * Can run a query and get data on the screen * List the county's longest border (i.e. for the US say Canada, for Norway sa Sweden) Caution: Some nation i.e. Japan have no border at all. * Can print the map and flag * Nice table format (-1,000,000 points per SQL injection attack) Due: Wed Feb 9, 2022. (-10% per workday late)