View Single Post
  #2 (permalink)  
Old 06-20-2007, 08:35 AM
HelloWorld's Avatar
HelloWorld HelloWorld is offline
PT Admin
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: In front of computer...
Posts: 1,119
iTrader: (0)
HelloWorld is a jewel in the roughHelloWorld is a jewel in the roughHelloWorld is a jewel in the rough
oh, I probably can answer your question to that.
There are various HTML document out there, which can be identified by looking at the very beginning of the code. www.programmerstalk.net for example, when you do view source on the home page. You will see something like this in the beginning of the document:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
that means that we're currently using HTML version XHTML transitional 1.0, and as you see we're using EN as the language. There are other that using Strict instead of transitional, which forced more to the XHTML version than HTML. <br /> is XHTML version of HTML hopefully that helps..!

btw.. those are not PHP, those are HTML

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by HelloWorld : 06-20-2007 at 08:39 AM.