in reply to enctype problem in CGI
I noticed that your output has two enctype attributes and your for has a POST method but your code does not have it. I doubt that the output is from your code.print $q->start_form(-method => 'POST', -action=>"myAction.pl"); # <form method="post" action="myAction.pl" # enctype="application/x-www-form-urlencoded"> print $q->start_form( -method => 'POST', -enctype => &CGI::URL_ENCODED, -action=>"myAction.pl"); # <form method="post" action="myAction.pl" # enctype="application/x-www-form-urlencoded"> and print $q->start_form( -method => 'POST', -enctype => &CGI::MULTIPART, -action=>"myAction.pl"); # <form method="post" action="myAction.pl" enctype="multipart/form-dat +a">
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: enctype problem in CGI
by chas (Priest) on Mar 27, 2005 at 00:47 UTC | |
|
Re^2: enctype problem in CGI
by macPerl (Beadle) on Mar 27, 2005 at 00:47 UTC | |
by borisz (Canon) on Mar 27, 2005 at 00:55 UTC | |
by macPerl (Beadle) on Mar 27, 2005 at 01:07 UTC | |
by borisz (Canon) on Mar 27, 2005 at 01:16 UTC | |
by macPerl (Beadle) on Mar 27, 2005 at 10:24 UTC | |
|