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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hello monks,

I recently ran into a problem with one of my scripts. After chatting with Bart it on the CB I was convinced that I should use qq(..) instead of the here document. My curiosity has the better of me though. I am still trying to figure out what went wrong in my original script. The script itself it really long, but can be viewed at my scratchpad. hok_si_la's scratchpad
In Summation,
########### Works ############## print <<END_OF_PRINT; <blahtag>blah blah $blah</blahtag> <blahtag>blah blah $blah</blahtag> #END_OF_PRINT #&printOwner($data{owner1}); #&printOwner($data{owner2}); #&printOwner($data{owner3}); #print <<END_OF_PRINT; <blahtag>blah blah $blah</blahtag> <blahtag>blah blah $blah</blahtag> END_OF_PRINT ######## Doesn't Work ########## print <<END_OF_PRINT; <blahtag>blah blah $blah</blahtag> <blahtag>blah blah $blah</blahtag> END_OF_PRINT #&printOwner($data{owner1}); #&printOwner($data{owner2}); #&printOwner($data{owner3}); print <<END_OF_PRINT; <blahtag>blah blah $blah</blahtag> <blahtag>blah blah $blah</blahtag> END_OF_PRINT
I am receiving the following warning:

Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Use of uninitialized value in concatenation (.) or string at D:\wwwroot\NewServer\test\scripts\Gnewserver.pl line 349. Operating System: Windows 2003 Server (Standard

The warning is placed in various locations depending on the initial query.

Sorry in advance for writing a book, but I am very curious about the problem.

Your help would be appreciated greatly,
hok_si_la

UPDATE:I figured out one huge prob. I had a lexically global defined %data for my main, and the subroutine printowners defined a %data within its scope. That could not be good.

In reply to Here document construct problem by hok_si_la

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-03-28 22:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found