in reply to SNMP - cont

The real problem is that you're redefining @test1 instead of using the existing one. That is, you're doing my @test1 = @serial;, which creates a new variable named @test1, scoped to the current block, instead of assigning to the @test1 you defined earlier. If you replace it with just @test1 = @serial; (no my) you should be able to get to it later.

Replies are listed 'Best First'.
Re^2: SNMP - cont
by theroninwins (Friar) on Aug 27, 2004 at 13:43 UTC
    thanks for the idea but it doesn't work. :-( .