in reply to Automated DNS Update Solution Needed
Nevertheless,
As for the rest of your question: what is your question? :-)
Updated because reformatting made the question slightly clearer
I stand by my recommendation of WWW::Mechanize, as it wil almost certainly make your code a lot simpler. The only thing it doesn't do (as far as I know) is give you the value of a filled in textarea field. HTML::Form should be able to do that for you:
You can then parse $value and use the set_field() method of WWW::Mechanize to set the field value to the new value.$form = HTML::Form->parse($html, $base_uri); $value = $form->value( $name );
If you want more information, you're going to have to go into more detail: what's the code of your script, what's the code of the html page you want to parse. and what do you want to submit back to the router.
Most of us regular monks are glad to help, but we can't read your mind :-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Automated DNS Update Solution Needed
by PodMaster (Abbot) on Dec 21, 2004 at 10:55 UTC | |
by Hero Zzyzzx (Curate) on Dec 21, 2004 at 20:26 UTC | |
by PodMaster (Abbot) on Dec 22, 2004 at 07:19 UTC | |
|
Re^2: Automated DNS Update Solution Needed
by bdgenz (Initiate) on Dec 23, 2004 at 10:58 UTC |