As the title says, are there limits and/or prohibited characters for form field names?

  • If I use an sha512() hash for field name, are there drawbacks to this (it's pretty lengthy)?
  • Or, are there any drawbacks when using -:x:©:y: as field name?
  • Or, may I use a serialized array for field name?
  • Or, what if the field contains a space character?
  • What about "/downloads/ready/games/" as a key?

I bet, this isn't HTML specific, but more PHP (scripting language) specific, whether after the posting, the values can be read. Theoretically, it may also apply to array keys in general.

One more thing I thought about, the usage of "readable" form fields has become so popular/mainstream because forms are mostly used for storing data inside a database, where field name resembles the column within database. Correct me if I'm wrong.

So, yes, am I free to use whatever I want in these forms, or I may end up with errors/unreadable data?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The HTML5 spec defines the allowed values for name attributes on <form> elements.

The value must not be the empty string, and the value must be unique amongst the form elements in the forms collection that it is in, if any.


Of course it also defines allowed values for the name attribute on form controls (<input>, <textarea>, &c.) (emphasis added).

4.10.19.1 Naming form controls

The name content attribute gives the name of the form control, as used in form submission and in the form element's elements object. If the attribute is specified, its value must not be the empty string.

Any non-empty value for name is allowed, but the names "_charset_" and "isindex" are special:

isindex
This value, if used as the name of a Text control that is the first control in a form that is submitted using the application/x-www-form-urlencoded mechanism, causes the submission to only include the value of this control, with no name.

_charset_
This value, if used as the name of a Hidden control with no value attribute, is automatically given a value during submission consisting of the submission character encoding.

link|improve this answer
But that's specific to form name, not it's fields. So, that means, in HTML5 I am free to go with my custom names? – psycketom Dec 2 '11 at 18:02
My apologies - I missed the (yes, you bolded it in the question) field part. That does make more sense now. See my edit. – Matt Ball Dec 2 '11 at 18:11
But I suppose that applies only to HTML5, and HTML4 is still left behind with what @KristerAndersson has posted? – psycketom Dec 2 '11 at 18:55
feedback

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

Read this

link|improve this answer
1  
HTML4 = out of date, amigo – Matt Ball Dec 2 '11 at 17:25
What do you mean is there a higher version? – Krister Andersson Dec 2 '11 at 17:26
Yes, html5. – Matt Ball Dec 2 '11 at 17:27
WOW, you are kidding, this seems interesting. – Krister Andersson Dec 2 '11 at 17:28
2  
HTML5 isn't even standardized yet. – Herbert Dec 2 '11 at 17:31
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.