Warning: Cannot modify header information - headers already sent by (output started at D:\xampp\htdocs\kregpho.php:2) in D:\xampp\htdocs\kregpho.php on line 72
can any 1 tell me wat this error mean....y should it occur.
It means that you use a header function
(header(), setcookie(), session_start(), etc...) after you started sending content. After you start sending content, the headers can not be modified.
And by "sending content", I mean anything that would show up in the browsers "view source" output. Even a white-space before your opening <?php tags would cause this error.
P.S.
Why did you post this into an old, random thread?