Thanks to Valdez, I have a good working script:
# inside finalorderpage.shtml <!--#include virtual="/cgi-bin/intercept.cgi"> # intercept.cgi #!/usr/bin/perl use CGI; # scripts executed via SSI don't get usual informations, # so we must rebuild the query passed to our calling page # using %ENV (it's a dirty trick) my $req_uri = $ENV{REQUEST_URI}; my $query_string = substr($req_uri, index($req_uri, '?')+1); my $q = new CGI($query_string); print $q->header('text/html'); print $q->param('VendorTxCode');
How do I manage to get the script to print the output into the actual code, for example, if VendorTxCode = 3746887345, how can I insert the result into my SHTML page instead of just outputting the result onto the screen? This probably isn't the right way of doing it, but to get my point across, here is what I want to do:
<INPUT type="hidden" name="VendorTxCode" value="<!--#include virtual=" +/cgi-bin/joyfultoys/order/bin/intercept.cgi">">
So my HTML will look something like:
<INPUT type="hidden" name="VendorTxCode" value="3746887345">
Please excuse my lack of knowledge. I am learning fast...

In reply to Perl/Server Side Includes by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.