Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Problems with references using GD::Graph::Data

by metadoktor (Hermit)
on Apr 01, 2002 at 18:49 UTC ( [id://155818]=note: print w/replies, xml ) Need Help??


in reply to Problems with references using GD::Graph::Data

I assume that you're using warnings and use strict. Are you using?
use diagnostics

Also perhaps you might want to rearrange some of your code so that:

print IMG $gd->gif; if (defined $gd)
becomes
if (defined $gd) { print IMG $gd->gif; } else { ... }
conditional.

metadoktor

"The doktor is in."

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://155818]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (8)
As of 2024-04-18 09:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found