PHP pages and HTML
Moderators: egami, macek, gesf
PHP pages can still contain a lot of typical HTML, so your pages will still need the basic <html>, <body>, etc. tags. They just may not be right at the top like you are used to seeing because there may be PHP variables and such being defined before the <html> tag. Also, if you do a view source at the client level, you will only see the HTML and client-side scripting, because by that time all the PHP has been read and processed by the server and the resulting HTML is fed to the browser, your opinions on this?