Apparantly This is not possible:
use CGI qw
cgi);
my $iq = new CGI;
print "something $iq->param('newUser') and more";
this tries to print the $part as a hash.
Does Perl has a function that will make this possible or do I really need to parse the form element first into a scalar and then use the scalar in the print part?
Ron
use CGI qw
my $iq = new CGI;
print "something $iq->param('newUser') and more";
this tries to print the $part as a hash.
Does Perl has a function that will make this possible or do I really need to parse the form element first into a scalar and then use the scalar in the print part?
Ron