RE: [PHP] help with header/cookies ..

2001-05-17 Thread Johnson, Kirk
Add an exit(); immediately following all the header() calls. Hitting a header() does not end execution of the script, so without the exit() the last header() that gets called is the one that actually occurs. Kirk -Original Message- From: Chad Day [mailto:[EMAIL PROTECTED]] Sent:

RE: [PHP] help with header/cookies ..

2001-05-17 Thread Chad Day
Sweet, thanks! Fixed it .. learn something new every day .. Chad -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 12:19 PM To: Php-General@Lists. Php. Net Subject: RE: [PHP] help with header/cookies .. Add an exit(); immediately following