in reply to Printing URL to webpage
# untested! use CGI; # the standard way of using perl to write web pages my $cgi = new CGI; # creates a new object to use print $cgi->header; # prints out your basic http headers my $continue = $cgi->param('continue'); # get the value of the "contin +ue" parameter passed to your script # print some HTML here... print "<A HREF=\"$continue\"><B>Continue</B></a>"; # some people use C +GI methods to print out HTML, but I am happy doing it raw
Now go check out the CGI.pm documentation and learn more.
dave hj~
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Printing URL to webpage
by Deanimal (Acolyte) on Nov 06, 2002 at 18:07 UTC | |
by Deanimal (Acolyte) on Nov 06, 2002 at 18:49 UTC |