in reply to Re: html/perl question
in thread html/perl question

what part would you like to see, what I did was make seperate perl programs one to genrate thumbnails one to create the html another one to move all my pics from cd to hard drive, now I want to start on one that I can add text for each picture using html like this
picture here <form action="some script name.pl"> <input type="text" length="50" name="where"><br> <input type="submit" value="where"> </form>
so once you hit the button it calls the script but how do I pass the text back to the script ?

Replies are listed 'Best First'.
Re: Re: Re: html/perl question
by the_0ne (Pilgrim) on May 31, 2002 at 04:07 UTC
    You want to check out the CGI module.

    use CGI; my $cgi = new CGI; my $where = $cgi->param('where'); print $where . "\n";
      thanks for the info