Hi
Your problem is with the beginning of the page:
Quote:
quote:#!c:/php/php.exe
<html>
<head>
<title>login</title>
</head>
<body>
|
As far as your page is concerned you have already sent headers to the browser. You need to put it after your header or cookie function (lines 48/49 and 62), towards the bottom of the page - after all the php code. You are basically sending headers on top of headers and the parser/browsers don't like this.
You also don't need the shebang line at the top of your script.
I hope this helps