http://qs321.pair.com?node_id=31338

rodry has asked for the wisdom of the Perl Monks concerning the following question:

Here is the code in question

my $tabla = param("tabla"); if ($tabla eq "Miembros") { my $llave = MensajeMiembros(); } sub MensajeMiembros { my $email = param("email"); my $mensaje = "Blah Blah"; return ($email);

When I remove the my from $email it works as expected.