hi!
i was about to create a perl script that send an sms message using the web
page www.quios.com
i succesfully download the page and after that some code herewith:
$treebuilder = new HTML::TreeBuilder();
$treebuilder->parse( $response->content );
@forms = @{ $treebuilder->extract_links( qw( FORM ))};
$form = new HTTP::Request::Form( $forms[1][1], $url );
here i get an uninitialized reference for $forms[1][1]
well if you take a look at this web page there are 2 html forms on it!
the first one is for loging in and the second one is for sending the sms
therefore i suppose i need the $forms[1][1].
i realized that in the html code of that webpage there is no action field
specified for the second form!
do you think that this is the reason i don't see the second form in the
@forms?
bye
tome