Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Undefined Subroutine

by little (Curate)
on May 21, 2003 at 21:26 UTC ( [id://259897]=note: print w/replies, xml ) Need Help??


in reply to Undefined Subroutine

Please rethink your use of quotes. As far as I can see you are forcing Perl to look through each string for possible variable interpolation.

I really gonna wonder if

print '<option> Compliment </option>'; # why omit the closing tag? # use this for pretty output print '<option> Compliment </option>' . "\n"; # or even like this use constant CRLF = "\n"; # ... print '<option> Compliment </option>' . CRLF ; # or use CGI::Pretty
would lead to strange results as well as your
print "<option> Compliment";
At least the first one should run faster :-) Do you have any subs declared matching the one or the other "name" in your output strings? Do you, worst I could think of, have a filehandle called OPTION?

Have a nice day
All decision is left to your taste

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-03-19 08:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found