Given the other responses I may be way off, but my impression is that you want to accomplish the following:
- the values of the variables $project et al. are set when Dispatcher.cgi.pl is executed;
- when TAZ.pl is executed, you want to use those values.
Unfortunately this is not possible in a trivial way since once the execution of
Dispatcher.cgi.pl is done, the values of all variables are gone without a trace.
What you want to accomplish is the notion of a session, i.e. several interactions with a webserver that maintains the state between those interactions.
The simplest way to do this is to embed the values of the variables you want to preserve in the HTML code the first script generates using hidden input fields. This is quick & dirty, hard to maintain and unsafe.
Another way is to store those values in cookies on the client with all drawbacks associated with the use of cookies.
Yet another is to use some session framework such as CGI::Application which is quite mature but might be intimidating at first.
The "right thing to do" depends strongly on the type of job you've at your hands.
Just my 2 cents, -gjb-
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.