My current code:
$file = fopen(\"countries.txt\",\"r\"); $array = array(); while(!feof($file)) { $array[] = fgets($file); } fclose($file);
When you compare strings - you should always use '==='.