Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. $file = file_get_contents("countries.txt");
  4. $dirs = explode("\n", $file);
  5.  
  6.  
  7.  
  8. foreach ( $dirs as $dir )
  9. {
  10.         mkdir("$dir");
  11. }
  12.  
  13. ?>
  14.  
  15.  
  16.  
  17. this is how the text file looks:
  18.  
  19. United_States/n
  20. Mexico/n
  21. Canada/n
  22. Guatemala/n
  23. Cuba/n
  24. Haiti/n