I made it !!! Thanks to my buddy Arshad - Buddy you're a true-perl-buddy !!!
Here comes an easy way, not exactly the way I want it - but I can do it this
way too,
After all :*There's more than one day to do it in perl*:We used
WWW::Mechanize module: A scrap version of the code we used  is here :

use WWW::Mechanize();
$me=new WWW::Mechanize();
$url='http://server.foo.com';
$me->get($url);
$aa=$me->content();
#open a file to get the output after passing my file - I wrote another
parser to extract the info i need
open(A,">goo1");
my $form = $me->form('1');
$me->set_fields( 'file name in the form' =>'ur file name');
$me->click_button(name=>'Submit');
$aa=$me->content();
#here is the file wiht the out put
print A $aa.'html';

--
IBK
perl is my policy !

Reply via email to