The webpage does not have a name to reference, as it is created dynamically
What does that mean?
I'm sure I'm missing something simple here, but LWP and HTTP ask me to specify an http://url and this page doesn't have one.
Well yes, yes you are. A web page has a web address, otherwise it isn't a web page. You need to learn about the internet to get an overall picture of how the internet works, , how tcp/ip, sockets, html, all fit together
| [reply] |
what I mean is:
I use a script to create the web page, so, in the address heading it say: http://myscript.pl
myscript.pl parses the form parameters and then decides which subs to call from another script, allthepagesandforms.pm, which then pulls a whole mess of info from a database and with this data finishes putting together a web page. BUT, in the address heading, it just says http://myscript.pl
That's what I mean. What I'd like to do is take one of these dynamically produced web pages and, instead of just parsing the form parameters..store the entire web page source code along with the parameters in a file.
can you help me with this?
Thank you
| [reply] |
what I mean is: I use a script to create the web page, so, in the address heading it say: http://myscript.pl
Um, that is not possible, unless myscript.pl is the name of your host
What I'd like to do is take one of these dynamically produced web pages and, instead of just parsing the form parameters..store the entire web page source code along with the parameters in a file.
Store it where?
can you help me with this? Thank you
See http://perldoc.perl.org/perlintro.html#Files-and-I%2fO and follow the links I gave you
| [reply] |