I need to run a query repeatedly to get information that is available on a per request basis. For example I need to
find the id of a number of employers in a company.
In perl I can have a list with the employer names and ordinarily one would go to a url form, enter the name and get back the id. I can have the code for the form, but it is asp, not php and this only runs in explorer. So what I want to do is
foreach my $name(@list_of_names){
system ("explorer $url $name >$reply");
}
that is pass to explorer the url name as well as the input and grab the output.
This is not really a perl question, more a use of explorer
from command line. If I can do this from the command line, I can automate it.
Any ideas?
find the id of a number of employers in a company.
In perl I can have a list with the employer names and ordinarily one would go to a url form, enter the name and get back the id. I can have the code for the form, but it is asp, not php and this only runs in explorer. So what I want to do is
foreach my $name(@list_of_names){
system ("explorer $url $name >$reply");
}
that is pass to explorer the url name as well as the input and grab the output.
This is not really a perl question, more a use of explorer
from command line. If I can do this from the command line, I can automate it.
Any ideas?