countries.php 264 B

1234567891011121314
  1. <?php
  2. header("Content-Type: text/plain");
  3. $acc = 1;
  4. $f = explode("\n", file_get_contents('countries_fr.txt'));
  5. foreach($f as $c) {
  6. if(strlen($c)>0) {
  7. echo 'UPDATE country SET name_fr=\''.addslashes($c).'\' WHERE ID = '.$acc.'; ';
  8. echo "\n";
  9. $acc++;
  10. }
  11. }