Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

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

I think a little more code is in order. If you test the output example like this using the startform method and specifying 'multipart/form-data' instead of allowing it to default to 'application/x-www-form-urlencoded' you get exactly the same output as if you had used the start_multipart_form method as you show in your post:

use CGI; my $query = new CGI; print $query->startform('POST','upload.cgi','multipart/form-data'); print $query->filefield('upload_file','',30,80); print $query->submit("Upload"); print $query->endform(); # the code above prints this using either startform as shown or start_ +multipart_form as in the posted code <form method="post" action="upload.cgi" enctype="multipart/form-data"> <input type="file" name="upload_file" size=30 maxlength=80 /> <input type="submit" name="Upload" value="Upload" /></form>

So you can use either method (they just have different default encodings)

I don't see where you expect to get your 'month', 'year', etc params from in the code given and don't see how the different default encoding from the two methods should make any difference to CGI.pm as it will handle params passed via either encoding just fine. So the options are either your CGI.pm is broken or you have a problem with your code. From what you have posted it is impossible to be certain but if I were a betting man I would be backing Lincoln.

cheers

tachyon

s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print


In reply to Re: Problem with uploading file by tachyon
in thread Problem with uploading file by Siddartha

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 pondering the Monastery: (3)
As of 2024-04-18 19:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found