Saving variables over multiple pages

E

Ed Jay

I'm writing a Perl script that processes various form data and outputs a
report based on the data. I want to use a single Perl script, but collect
the data on multiple html pages. I do not particularly want to create the
html pages from within the Perl script. How do I do it?
 
S

Stuart

Ed said:
I'm writing a Perl script that processes various form data and outputs a
report based on the data. I want to use a single Perl script, but collect
the data on multiple html pages. I do not particularly want to create the
html pages from within the Perl script. How do I do it?

You could do it using JavaScript (as long as the user has it enabled!),
but using Perl for the pages would be a far simpler way of doing things.
 
J

Joe Smith

Ed said:
I'm writing a Perl script that processes various form data and outputs a
report based on the data. I want to use a single Perl script, but collect
the data on multiple html pages. I do not particularly want to create the
html pages from within the Perl script. How do I do it?

What is the source of the form data? Are you getting it from a file
(data previously processed) or straight from the browser (CGI in realtime)?

For the latter, simply use a hidden field to identify which subsection
of your CGI program to use to parse the data. Grab the data from
the browser as each page comes in and write it somewhere. You'll
have to have some sort of mechanism to inform your CGI when the
data collection is complete so that it can create a summary.

This is assuming that you are not trying to parse the HTML output
from another site's CGI program. You'd want WWW::Mechanize for that.

-Joe
 
E

Ed Jay

Joe Smith said:
What is the source of the form data? Are you getting it from a file
(data previously processed) or straight from the browser (CGI in realtime)?

For the latter, simply use a hidden field to identify which subsection
of your CGI program to use to parse the data. Grab the data from
the browser as each page comes in and write it somewhere. You'll
have to have some sort of mechanism to inform your CGI when the
data collection is complete so that it can create a summary.

This is assuming that you are not trying to parse the HTML output
from another site's CGI program. You'd want WWW::Mechanize for that.
Thanks, Joe.

I ended up doing as you suggested, above. I read in a page from a browser,
save the data, and create the next page from within the Perl script with
the previously stored data as a hidden form field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,430
Messages
2,571,676
Members
48,796
Latest member
Greg L.

Latest Threads

Top