Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: CHOMP VS. CHOP

by amelinda (Friar)
on Oct 13, 2000 at 01:26 UTC ( [id://36518]=note: print w/replies, xml ) Need Help??


in reply to CHOMP VS. CHOP

I just recently had a hairy issue where someone, in their CGI script, had a
chop; chop; $_ = "$_\n";
which made file uploads from browsers in Windows DTRT, but totally broke my UNIX file-upload thingy. Part of the solution involved changing those three lines to read:
chomp; chomp; $_ = "$_\n";
You might try that here.

Log In?
Username:
Password:

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

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

    No recent polls found