Sorry for asking this common question again, but I couldn't find the answer. So I'm getting this error in my menu.php that im including in my index:
"Cannot modify header information - headers already sent by (output started at /home/andxeavr/public_html/bulfit.com/benching/index.php:61) in /home/andxeavr/public_html/bulfit.com/benching/includes/menu.php on line 20"
This is my index line 61:
include('includes/menu.php');
And this is my menu.php:
if (isset($_POST['search_sub'])) {
header("Location: sign_up.php");
}
So I tried with ob_start() and the other liked answers but it didn't worked.