Warning error

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mic2100
Forum Newbie
Posts: 4
Joined: Tue Nov 15, 2005 5:30 am

Warning error

Post by mic2100 »

I havn't been at this 2 long and i wondered if anybody know how i can solve this problem.

Warning: Cannot modify header information - headers already sent by (output started at /home/fhlinux207/s/sjmsurveys.com/user/htdocs/confirm.php:32) in /home/fhlinux207/s/sjmsurveys.com/user/htdocs/confirm.php on line 95

thanks for any help received.

:oops:
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

Just search this forum or the web for "Cannot modify header". You will discover many people have had that problem before you, and we've answered it many times too.
User avatar
php3ch0
Forum Contributor
Posts: 212
Joined: Sun Nov 13, 2005 7:35 am
Location: Folkestone, Kent, UK

Post by php3ch0 »

Its normally because of some sort of output before the header() function.

Check for:

Blank spaces or lines
echo "something";
print "something";

other error messages
Post Reply