Hey guys, I seem to not fully understand what is returned by using $cgi->param('myName');
I'm trying to do add on a bit to the myName argument.
It looks like this:
use CGI;
my $cgi = new CGI;
$myNewName = $cgi->param('newName');
$myNewName = "stuff".$newName;
then it would be called:
and I would expect $myNewName to be stuffJake.
However I get an error:
Use of uninitalized value in concatenation (.) or string at /var/
Any ideas?
Thanks so much!
-Jake
I'm trying to do add on a bit to the myName argument.
It looks like this:
use CGI;
my $cgi = new CGI;
$myNewName = $cgi->param('newName');
$myNewName = "stuff".$newName;
then it would be called:
and I would expect $myNewName to be stuffJake.
However I get an error:
Use of uninitalized value in concatenation (.) or string at /var/
Any ideas?
Thanks so much!
-Jake