| | 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.goldenribbontrading.com/p3p.xml"> ** mandatory link needed for IE6 to enable cookies. </head> <body> </body> </html> <?php checks the variables passed from form onto database, if vairables match; setcookies () 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? |

