This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php header('Content-Type: text/html; charset=utf-8'); ?> | |
| <html> | |
| <head> | |
| <title>Fix wrong encoded UTF8 characters</title> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
| </head> | |
| <body> | |
| <pre> | |
| <?php | |
| /* Problem description: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <select> | |
| <option value="TR">Türkiye</option> | |
| <option value="VI">ABD Virgin Adaları</option> | |
| <option value="AF">Afganistan</option> | |
| <option value="AX">Aland Adaları</option> | |
| <option value="DE">Almanya</option> | |
| <option value="US">Amerika Birleşik Devletleri</option> | |
| <option value="UM">Amerika Birleşik Devletleri Küçük Dış Adaları</option> | |
| <option value="AS">Amerikan Samoası</option> | |
| <option value="AD">Andora</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE IF NOT EXISTS `countries_list` ( | |
| `id_country` tinyint(3) unsigned NOT NULL auto_increment, | |
| `country_name` varchar(30) collate utf8_unicode_ci NOT NULL, | |
| PRIMARY KEY (`id_country`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=207 ; | |
| -- | |
| -- Dumping data for table `countries_list` | |
| -- |