In my html form i have a hidden field thet contains a float validation command;
<input type="hidden" name="foo_float" value="Please enter a valid number - Decimals are ok">
The validation works fine, but it does a little something extra that I'm not too fond of... after the user enters in a numeric value in the form fiels 'foo', a decimal along with 6 zero's are added to whatever the user entered....?
Why is this happening... what can i do to avoid this?
<input type="hidden" name="foo_float" value="Please enter a valid number - Decimals are ok">
The validation works fine, but it does a little something extra that I'm not too fond of... after the user enters in a numeric value in the form fiels 'foo', a decimal along with 6 zero's are added to whatever the user entered....?
Why is this happening... what can i do to avoid this?