in reply to Re^2: Use of uninitialized value $pic
in thread Use of uninitialized value $pic
SOLVED I found a typing error in the reference to the hash with the URL.
And the typo was? I bet on
- $snapshot-> url( "IPCamera{$key}"); + $snapshot-> url( "$IPCamera{$key}");
BTW there's no need to put that into double quotes, or is there? if you had written
$snapshot-> url( IPCamera{$key});
the compiler would have catched that error.
|
---|