BTW, I have no programming expertise what so ever. How do you think the scripts you need are going to be written? Perlmonks is a very friendly community and we do help even newbie users, but we expect them to have at least some programming knowledge and the willingness to invest time and effort in learning to program in Perl. We are not a "we write your programs for free" service.As to the form2mail CGI script, a quick Google search showed lots of "form2mail" scripts, many of which are not Perl-programs at all and all provide wildly different interfaces and functions. So from the info you gave, I cannot determine how to get the info from this script into another. Also a 'form2mail' program does not seem entirely well suited for uploading files. For that I would look for a program such as eUpload (although it is artifically limited to files of max. 25 kByte).
CountZero A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James
| [reply] |
File upload fields in web forms are not allowed to be set by a remote machine (which is what you are asking to do), or http://somenastysite.example.com/ could force sending /etc/passwd or the like without the user even knowing it. The best I can think of suggesting is to create a session of sorts, upload the 13 files via AJAX, JSON, etc to that session, then call the calendar maker on that session.
Unless you can restrict the picture size your customers are uploading (I have jpeg files that print well at 8x10 or higher at under 1MB), or relax your requirement for uploading all of the files from a single page, I cannot see an easy way to avoid some sort of dynamic processing of the files.
| [reply] |
| [reply] |