--- Lee Hoffner <[EMAIL PROTECTED]> wrote:
> I'm new to scripting in PERL (I've only done Javascript and Lingo before).
> 
> I'm building a script to write an HTML page on the fly, using image files
> that are in a directory that is given to the script as a variable. How do I
> pass my variable to my script from the HREF link that my user clicks? (EG:
> my script is in my cgi-bin directory and is named "pgbuilder.pl". Do I make
> the link something like
> http://www.domain.com/cgi-bin/pgbuilder.pl?archimage, where "archimage" is
> the name of the directory I want to pass the script?
> 
> The script itself will use
>    $dir = param('dir')
> to receive/store the variable.

You almost had it!  First, you'll probably want to tweak the HREF link just a bit:

    http://www.domain.com/cgi-bin/pgbuilder.pl?dir=archimage

Then, the Perl code:

    use strict;
    use CGI qw/ :standard /;
    my $dir = param( 'dir' );

However, this could be a problem.  What, exactly, is 'dir' supposed to contain and how 
do you want
to open that directory?  If you are opening directories and serving content directly 
from them,
you could have some serious security issues.  Unfortunately, security is very 
difficult to get
right.  One example of how this can go horribly wrong is at
http://www.perlmonks.org/index.pl?node_id=36121

If you can post some more of your code (particularly what you're doing with $dir), we 
can go over
it and let you know if there are any issues that you may want to address.

Cheers,
Curtis Poe

=====
Senior Programmer
Onsite! Technology (http://www.onsitetech.com/)
"Ovid" on http://www.perlmonks.org/

__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to