in reply to Passing data a from URL into a form???
this will display the value of the 'enter' parameter (i.e. car) in the html form hth...#!/usr/bin/perl use strict; use CGI qw(cgi); my $cgi = new CGI; print "<html><body><form>\n<input type=text name=car value=" . $cgi->p +aram('enter'); . "></form></body>"
|
|---|