Hi guys,
I'm using PHP on Win2000 (only cause I did not have other choices!)
I've got a prob passing my variables from a form to another page.
If i use a normal form averything is fine, and I'm able to correctly print the variables into the other page.
However, if I use "ENCTYPE=MULTIPART/FORM-DATA", I get just 2,3 of my variables printed!!
ex:
the form has got:
<input type=text name=var1 >
<input type=text name=var2 >
<input type=text name=var3 >
<input type=text name=var4 >
<input type=text name=var5 >
<input type=text name=var6 >
NO-MULTIPART I GET PRINTED:
var1
var2
var3
var4
var5
var6
MULTIPART I GET PRINTED:
var1
var2
...Did anybody have the same trouble and solved it? I've got register_globals = On
var_track = On in my php.ini...please help!
Jo