Cannot modify header information - headers already sent

Light Poster
19May2009,11:17   #1
webwss's Avatar
Warning: Cannot modify header information - headers already sent

Warning: Cannot modify header information - headers already sent by (output started at C:\webserver\Apache2\htdocs\register.php:1) in C:\webserver\Apache2\htdocs\register.php on line 68
Go4Expert Founder
19May2009,19:27   #2
shabbir's Avatar
You have some output like echo / print before the final output you are doing again which means you are sending the headers couple of times
Team Leader
21May2009,22:03   #3
pradeep's Avatar
use output buffering, call the function ob_start and the beginning of your script.