I seup PHP4 on a Win2k server. PHP is working, but when i tested a script, I am seeing header info that I should not be.
example:
if(!($title)) {
echo "no title specified";
} else {
echo "$title";
}
When I look at this in a browser, I get a Warning, but then the php script runs ok.
example:
Warning: Undefined variable: testa in d:\inetpub\wwwroot\test.php on line 2
no title specified
any ideas what may be causing this