in reply to Re^2: enctype problem in CGI
in thread enctype problem in CGI

Yes, use the encoding type explicit in your code. Since it looks, the default has changed.
print $q->start_form( -enctype => "application/x-www-form-urlencoded", -action=>"myAction.pl");
Boris

Replies are listed 'Best First'.
Re^4: enctype problem in CGI
by macPerl (Beadle) on Mar 27, 2005 at 01:07 UTC

    Boris,

    as per the posted code ... tried & failed (both ways)

    -enctype => "application/x-www-form-urlencoded"

    and

    -enctype=>&CGI::URL_ENCODED
      Since it worked for me, you might consider a update of CGI. I used version 3.04 on osx.
      Boris

        Actually Boris,

        Looking at the issues mentioned by merlyn, I guess I need to get the hosting co. to back step to 3.05

        Thanks