Originally posted by Mordecai
Yeah, the site's down.
Umm, how does adding a slash to some tags make something more "compliant," when the language it was intended for is much, much older and more renowned (the latter of course is just superfluous information, however)? Tell me how one of these will run any better:
<img src="myimage.jpg"> - HTML
<img src="myimage.jpg" /> - XHTML
The first will run faster since the interpreting engine (the browser) will not have to parse the "/."
That's incorrect. The / closes the tag so now it no longer has to look for a close (when in compliant mode, not quirks mode). View info on this page and you'll see that it's in quirks mode which means the browser is second guessing every tag is sees, knowing that the developer is allowed to make mistakes because the browser probably knows how to correct them.
In XHTML it knows that the code is correct so up to 11 correction libraries are not needed by the browser. It parses much, much faster. In most cases you won't even see the page being built. It just appears. Try it sometime on a complex, table-heavy page.
Then there's the issue that the browser manufacturers agreed back in 2000 to phase out HTML. The parsing engines are all going to be moved to parsing XML and no longer HTML. This means that in the coming years, any HTML page you have will need to be converted to a compliant (wellformed) langauge -- XML.
Radon, Bluefish is also a good editor that supports PHP. They started supporting XHTML years ago, so it's matured. I've been mirroring it for around 2 years ago and the dev list is extremely active. They're very on top of the development.
Dreamweaver does the same.