Forum Moderators: coopster
...and removes all periods
I've found that PHP converts all periods to underscores (despite the period being a valid character in the NAME attribute. However, slashes and spaces are not valid in the NAME attribute.) The same happens when you have a
<input type="image"control. I think the reason stems from the fact that PHP can't have periods in variable names.
If it's any help, I had a very similar problem recently and solved it by using the NAME of the INPUT to reference the NAME of a hidden field, which contained the multi-strange-character string as its value. Something like....
<input type="checkbox" name="fld_file01">
<input type="hidden" name="file01" value="test.txt">