Hello Folks, I have this problem with header and include files
code:
<?php
include "blah.php"
if(!valid_email($emailaddress)){
header("Location: register.php");
}
?>
problem:
Warning: Cannot add header information - headers already sent by (output started at /home/webmaster/www/include/members_functions.php:3) in /home/webmaster/www/members/new_registreren.php
on line 6
now the include only has functions no echo, print or any output functions
please help