in reply to Re^6: Pass the value from perl script to html page
in thread Pass the value from perl script to html page

Yes. You just use your existing HTML file as the basis for the template - inserting the appropriate template directives where you wish them to be replaced by your chosen text and then feed it through the template processor as appropriate. There is no mechanism to pass a value from a perl program directly to an HTML page as you seem to believe.

/J\

  • Comment on Re^7: Pass the value from perl script to html page

Replies are listed 'Best First'.
Re^8: Pass the value from perl script to html page
by suntech (Initiate) on May 04, 2005 at 10:59 UTC
    but if I can get the values from html page by using following lines 'my $query = new CGI;' 'my $sirName = $query ->param("sirName");' why I cant do the same to pass values from perl to html...

      Er, because you can't. Please review the fine documentation on HTML and associated technologies at http://www.w3c.org to confirm this for yourself.

      /J\

        but if I can get the values from html page by using following lines

        my $query = new CGI; my $sirName = $query ->param("sirName");

        why I cant do the same to pass values from perl to html...

        If we are to interpret your statement literally, gellyfish is correct, the above lines of code will not send a query string from your perl code to your html page. However, gellyfish is also mistaken regarding HTML; it is entirely possible to pass a query string between pages using either the GET or POST methods, which CGI fully supports.

        If you want your cgi to work as a redirection page, merely forwarding the query string, this is possible as well. You can either append the query string to the redirect and send the form via GET or you can try to use POST. While I could not find any equivalent to Javascript's .submit() method in the CGI:: modules, you can accomplish this by creating your own user agent.

        Both methods are documented in Chapter 20, Section 2 of The Perl Cookbook.

        .....OK ...:-( again lot of work for me, any way thanks for u......:-(
      You open the html file and process it the way I showed you in the example I wrote, or using HTML::Template if you need elaborate tricks.