in reply to My POST is changing to GET

Two questions. 1) What is happening that makes you think it's using the get method. 2) Since the code you posted looks ok, can we see some more to see if the problem is somewhere else in your code?

-thabenksta
my $name = 'Ben Kittrell'; $name=~s/^(.+)\s(.).+$/\L$1$2/g; my $nick = 'tha' . $name . 'sta';

Replies are listed 'Best First'.
Re: Re: My POST is changing to GET
by rguyer (Novice) on May 02, 2001 at 20:25 UTC
    In my access log files, it shows the requests as GET instead of the POST.
    It's causing the users password to be displayed in the address bar, and it also prevents my file upload forms from working properly.

      You have a lonely <form> tag towards the top. Take that out and you will be fine.

      -thabenksta
      my $name = 'Ben Kittrell'; $name=~s/^(.+)\s(.).+$/\L$1$2/g; my $nick = 'tha' . $name . 'sta';
        Thanks everyone for all the help!