Hi,
Can anyone tell me why php is behaving like this?

If I use enctype="multipart/form-data", it seems the first form field is not passed to 
php.
ex:
<form method="post" action="products.asp" enctype="multipart/form-data">
<input type="hidden" name="cmd" value="edit">

$cmd will not be passed to php, I have to do this:

<form method="post" action="products.asp" enctype="multipart/form-data">
<input type="hidden" name="null" value="null">
<input type="hidden" name="cmd" value="edit">

Now I can use $cmd.
Is this normal?
                         
Windows Law 1: What boots up must come down...
-------- All I ask of life is a constant and exaggerated sense of my own
importance. -------- 
Chris Kovalcik
Systems Administrator
Interactive Broadcasting Corporation
[EMAIL PROTECTED]
-------------------------------------------------
Creators of:
BC Adventure Network www.bcadventure.com
BC Books www.bcbooks.com
Casting Shadows www.castingshadows.com
Cowboylife www.cowboylife.com
Fish BC www.fishbc.com
Western Fly Fisher Magazine www.westernflyfisher.com

Reply via email to