Quote Originally Posted by Invent View Post
Jake, if you mean move it to line 1 in the index.php file then gb2/php.net/ .

I am *pretty* sure whitespace isn't counted as "HTML" after the php tag.

--

If you mean the config.php, thats fine ^_^
It doesn't count just normal whitespace, ex:

PHP Code:
<?php

session_start
( );

// blabla 
?>
Although it is a good practice, for any file that you are including, or just all-php, to prevent these errors:

Do not put the closing PHP operator into your program.

PHP Code:
?> 
if you leave it blank, it prevents whitespace.

Just FYI