ok i have this portion of the script,
$ltr = range('a', 'z') ;
ok but i want it to do a range from mdd1 -mdd200 how can i change the script above to reflect this.
Well, if the mdd is constant, and just 1-200 is random, use this:
$num = rand(1,200); $name = "mdd".$num;