in reply to html/perl question

Hi.

Could you post your code so we could take a look at it?

Thanks,

-Katie

Replies are listed 'Best First'.
Re: Re: html/perl question
by wageslave (Novice) on May 31, 2002 at 02:31 UTC
    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 ?
      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