Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any difference in using non-capticalized "post" or capitalized "POST" in <form> action method? I just want to strictly follow W3C HTML specification.

This is no difference when running in modern browsers, though.

share|improve this question

3 Answers

up vote 7 down vote accepted

From the w3c docs for forms:

Possible (case-insensitive) values are "get" (the default) and "post".

share|improve this answer

from http://www.w3.org/TR/html5/syntax.html

Many strings in the HTML syntax (e.g. the names of elements and their attributes) are case-insensitive, but only for characters in the ranges U+0041 to U+005A (LATIN CAPITAL LETTER A to LATIN CAPITAL LETTER Z) and U+0061 to U+007A (LATIN SMALL LETTER A to LATIN SMALL LETTER Z). For convenience, in this section this is just referred to as "case-insensitive".

share|improve this answer

No difference! I always use lower case.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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