Need some help please. I'm trying to use header(). I have a.php: <?php Header("Location: b.php"); ?>
and b.php which echo something.
but I get: Warning: Cannot add header information - headers already sent by (output started at
Can u help me ?
You must not output anything (even whitespace) before a Header() call
10x