in reply to Variable becomes undef on my web host but not locally.
Hi Lady Aleena,
You have only shown us the module, but how is your subroutine html been called is also important.
Of course, from the face value both your variable $root_path and $root_user should not be undefined but who knows just "maybe", they have been changed.My Advise: Pass the variable to use within a subroutine as argument to the subroutine. In other words, as much as possible, don't use global variable that can be change by other part of your code in your subroutine.
Simply do:
... html(\%hash_to_pass,$root_user,$root_path); ... sub html{ my($hash, $user, $path) = @_; .... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Variable becomes undef on my web host but not locally.
by Lady_Aleena (Priest) on Apr 22, 2013 at 21:56 UTC |