k, I just switched all of my javascript Redirect commands to php Header() commands.
Well Since I do includes in my pages, it happens that my index.php might have a header() statment and the included page, that causes me to get errors when I hit the page. Here is what the error says
Warning: Cannot modify header information - headers already sent by (output started at public_html/index.php:7) in public_html/logincheck.php on line 32
Well Line 7 of index.php is a <?php.
and Line 32 of Logincheck.php is a header redirect
header("LOCATION: index.php");
Is it possible to have multiple header() commands in 1 page? they are of course in If statements so that not all of them are being run and only 1 is actually used at a time.
Thanks