in reply to passing a variable from a link
#!/usr/bin/perl use strict; my $pet = $ENV{'QUERY_STRING'}; print "Content-type: text/html\n\n"; print qq~<html> <head></head> <body> <center> <form><input type="text" value="$pet" size="25"></form> </body> </html>~;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: passing a variable from a link
by Ardenstone (Acolyte) on Nov 15, 2001 at 07:10 UTC | |
by Flame (Deacon) on Nov 17, 2001 at 21:16 UTC |