I'm coding a log-in page using PHP and mySQL. It works perfectly fine on any browser EXCEPT IE6... POS MS software. Anyway here's how the script is right now;
<html>
<head>
<title>Checking Log-In...</title>
<link rel="P3Pv1" href="http://www.blablabla.com/p3p.xml"> ** mandatory link needed for IE6 to enable cookies.
</head>
<body>
</body>
</html>
<?php
checks the variables passed via form onto SQL database,
if vairables match;
setcookies (value set for cookies)
auto redirect to new page
?>
The current code produce a HTTP header conflicts. The mandatory IE6 header conflicts with setcookies() on HTTP header. Anybody that's smart enough willing to help out here?
<html>
<head>
<title>Checking Log-In...</title>
<link rel="P3Pv1" href="http://www.blablabla.com/p3p.xml"> ** mandatory link needed for IE6 to enable cookies.
</head>
<body>
</body>
</html>
<?php
checks the variables passed via form onto SQL database,
if vairables match;
setcookies (value set for cookies)
auto redirect to new page
?>
The current code produce a HTTP header conflicts. The mandatory IE6 header conflicts with setcookies() on HTTP header. Anybody that's smart enough willing to help out here?