Hello, So I think I've found 3 ways to describe the HTML Doc as "HTML".
Which one is the best?

1) Via MetTag (this was generated in Dreamweaver):

        <head>
        <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
        </head>

2) Print Statement at top of page:

        print "Content-type: text/html\n\n";

3) Using the PHP Header command:

        header( "Content-type: test/html" );

What do you think?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to