I don't espescially know Visual Basic, but I know PHP and they look kinda the same so I hope this helps:
To include another script in your current script, use the 'include' function.
e.g.
Code: Select all
include 'file_name_that_you_want_to_include_goes_here.ext'
There are two ways to loop something until a certain condition is met.
There is the While loop and the For loop.
Here is an example to loop a script 10 times:
Code: Select all
$num = 1;
while($num < 10){
place your script here
$num = $num + 1;
}
Mmmm I hope that helps, probably won't though seeing as it's PHP :p But, that's all I know ^^ VBS looks kinda similar though...
Your best bet would be to search google :p