in reply to Can't get CGI.pm to work
just name the thing inside the ( " " ) the same as the name of the field you want to get, that all for today!#!/usr/bin/perl -w use CGI; my $q = new CGI; my $name = $q->param( "name" ); my $email = $q->param( "email" ); my $unique_id = $q->param( "unique_id" );
Imagination is more important then knowledge -Einstein-
|
|---|