- <?php
- header("Content-Type: text/plain");
- $acc = 1;
- $f = explode("\n", file_get_contents('countries_fr.txt'));
- foreach($f as $c) {
- if(strlen($c)>0) {
- echo 'UPDATE country SET name_fr=\''.addslashes($c).'\' WHERE ID = '.$acc.'; ';
- echo "\n";
- $acc++;
- }
- }
|