Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
If you have a shell access on the machine:
Code:
cd /your/website/root
for i in {1..200}; do mkdir directory$i;done
If php only:
PHP Code:
<?php $max=200; $root=$_SERVER['DOCUMENT_ROOT']; for($i=1;$i<=$max;$i++){ mkdir("$root/directory$i"); }
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 02-25-2009 at 07:01 PM..
|