To those of you that helped me with this problem I have spent time
eliminating lines of code.. the problem was in the following line:
if ($_SESSION["first_name"])

the line should be like this
if (ISSET($_SESSION["first_name"]))

Seems like ISSET made a difference in eliminating warning: Cannot add
header information. The code worked before but I guess it was broken
once Global Vars were turned off in the resent version of PHP

Thank you to all the replies

Paul



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to