Input field name starts with a number
Posted
by fire
on Stack Overflow
See other posts from Stack Overflow
or by fire
Published on 2010-03-18T11:21:44Z
Indexed on
2010/03/18
11:41 UTC
Read the original article
Hit count: 134
I have an input field whose name is an MD5 string e.g.:
<input type="hidden" name="7815696ecbf1c96e6894b779456d330e" value="1">
Now I understand that having a number as the first letter in an input field name is generally bad practice, but are there any side-effects to this such as a certain browser won't send it in the POST request?
© Stack Overflow or respective owner