cgi_lib'maxdata

2003-10-27 Thread p . libardi
Hi, I've the need to limit the amount of data a user can send through POST method. Actually I've just added the following instruction: cgi_lib'maxdata = 1; Is this enough? What happens if a user sends data which overflow this limit? And what about size limit for data sent through GET method or

RE: Finding the current path

2003-10-27 Thread Thomas Bätzler
Octavian Rasnita [mailto:[EMAIL PROTECTED] wrote: > Thank you, but $0 will tell me the path and the file name of > the script.pl file, not the path from where I ran the script. So the FindBin module is not what you need? > Now, I could run pwd and get what I want, but in fact I need > to run t

Re: Finding the current path

2003-10-27 Thread Octavian Rasnita
Thank you, but this is not doing what I want. I would like to find the current directory from where I run the script, not the path of that script. I can do it by running the pwd command line probably, but I need to run this under Windows. Thanks. - Original Message - From: "Wiggins d'An

Re: Finding the current path

2003-10-27 Thread Octavian Rasnita
Thank you, but $0 will tell me the path and the file name of the script.pl file, not the path from where I ran the script. If the current path is: /var/www (This path is shown by pwd command). and the script is in: /home/script.pl if I run: perl /home/script.pl if the script will print $0, it w

param and url_param

2003-10-27 Thread p . libardi
Hi, how can I get all the ($name, $value) couples passed to a script with POST method, and not to take couples passed through the url or GET method? Thanks, Paolo -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

form data in ENV

2003-10-27 Thread p . libardi
Hi, I'm actually writing a Perl Script to draw a table in a HTML page. This script executes other scripts to draw the full table, and the central cell of the table is a problem for me. I want to write down a script to draw this cell: this script has to show a form if this is the first time the user