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.

I am a big time user of using double quotes in PHP so that I can parse variables without concatenating strings. As a result, when I am generating HTML I often use single quotes for setting tag fields. Example:

$html = "<input type='text' name='address' value='$address'>" ;

Now this is far more readable to me then either

$html = "<input type=\"text\" name=\"address\" value=\"$address\">" ;

or

$html = '<input type="text" name="address" values="' . $address . '">' ;

from brief searches I have heard people saying that single quotes for HTML fields is not recognized by EVERY browser. Thus I am wondering what browsers would have problems recognizing single quote HTML?

share|improve this question
Hell yeah! This is the way forward. – Skilldrick Nov 5 '09 at 20:58

8 Answers

This is similar to When did single quotes in HTML become so popular?. Single quotes around attributes in HTML are and always have been permitted by the specification. I don't think any browsers wouldn't understand them.

share|improve this answer
2  
+1 for the link to the standard. – David Cary Oct 31 '12 at 17:49
1  
One thing I need to mention here is that some HTML clients (not necessary browsers) have compatibly issues on single quoting. One strange example is that in Hotmail if you use <img src='cid:xxx' ... /> to show a inline image it will not appear at all because the content id was ignored. You have to use `<img src="cid:xxx" ... /> instead. – Earth Engine Feb 12 at 0:51

As noted by PhiLho, although there is a widely spread belief that single quotes are not allowed for attribute values, that belief is wrong.

The XML standard permits both single and double quotes around attribute values.

The XHTML standard doesn't say anything to change this, but a related section which states that attribute values must be quoted uses double quotes in the example, which has probably lead to this confusion. This example is merely pointing out that attribute values in XHTML must meet the minimum standard for attribute values in XML, which means they must be quoted (as opposed to plain HTML which doesn't care), but does not restrict you to either single or double quotes.

Of course, it's always possible that you'll encounter a parser which isn't standards-compliant, but when that happens all bets are off anyway. So it's best to just stick to what the specification says. That's why we have specifications, after all.

share|improve this answer
2  
+1 for the link to the XML standard. I know this is an old thread, but for completeness, people should pay particular attention to the AttValue grammar specification within the standard. If you can read EBNF (very similar to regular expressions) you will see that it allows the use of both single and double quotes to delimit attributes. – daiscog Feb 1 '12 at 12:24
3  
But HTML is based on SGML (it's XHTML which is based on XML) so quoting the XML spec isn't very useful… – Donal Fellows Mar 15 '12 at 11:06

I have heard people saying that single quotes for HTML fields is not recognized by EVERY browser

That person is wrong.

share|improve this answer
7  
Not necessarily. I can create a browser in a few minutes that does not recognise single quotes for HTML fields. Of course, there will be a lot more that it doesn't recognise... ;P – Lightness Races in Orbit Jun 10 '11 at 19:29
5  
Microsoft did almost the same with IE. ;) – Leif Mar 15 '12 at 10:53

Don't believe everything you see on Internet...
Funnily, I just answered something similar to somebody declaring single quotes are not valid in XHTML...

Mmm, I look above while typing, and see that Adam N propagates the same belief. If he can back up his affirmation, I retract what I wrote... AFAIK, XML is agnostic and accepts both kinds of quote. I even tried and validated without problem an XHTML page with only single quotes.

share|improve this answer

I also tend to use single quotes in HTML and I have never experienced a problem.

share|improve this answer

Only problem is data going into TEXT INPUT fields. Consider <input value='it's gonna break'/>

(same with <input value="i say - "this is gonna be trouble" "/>)

You can't escape that, you have to use htmlspecialchars.

share|improve this answer

... or just use heredocs. Then you don't need to worry about escaping anything but END.

share|improve this answer

Single Quotes are fine for HTML, but they don't make valid XHTML, which might be problematic if anybody was using a browser which supported only XHTML, but not HTML. I don't believe any such browsers exist, though there are probably some User-Agents out there that do require strict XHTML.

Ultimately it doesn't matter (or rather, there are things which matter a lot more) in web programming. You may get slightly faster rendering in some browser engines depending on how they're implemented, but we're talking a difference of a few milliseconds, nothing "real".

share|improve this answer
the worse part is people that write HTML pages but mark them as XHTML because it's 'better'. fortunately this fad seems to be going down. – Javier Nov 7 '08 at 20:02
2  
I do not believe this statement about XHTML is true. Both " and ' are acceptable in XML, and the W3C validator accepts XHTML documents with single-quoted attributes. Perhaps this may be a confusion with XHTML eliminating unquoted attributes which are legal in HTML? – Doug McClean Nov 7 '08 at 21:10
Unless you serve your page as text/xhtml and not text/html browsers will render it as HTML, so HTML rules will apply. Regrdless, one on the w3C principles is NOT TO BREAk THE WEB. Because it works now, it will likely work tomorrow. – Diodeus Nov 7 '08 at 21:50
3  
XHTML requires pages to be well-formed XML, and XML allows either double or single quotes around attributes. – Ned Batchelder Nov 7 '08 at 21:57
3  
Actually, to be treated as XHTML you need application/xhtml, not text/xhtml. I made the same mistake with my web site and was (unpleasantly) surprised that it wasn't text/... – Software Monkey Dec 25 '08 at 21:41

Your Answer

 
discard

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