Hi
any one help me
logincheck.php
----------------------
i am using this file in another php file using following code
<? include("loginc heck.inc"); ?>
i got following error
Undefined variable: cookie_user_id .
Cannot modify header information - headers already sent by
any one help me
logincheck.php
----------------------
Code:
<?
if($cookie_user_id=='') {
$page = "index.php";
header("Location: $page");
}
?>
<? include("loginc heck.inc"); ?>
i got following error
Undefined variable: cookie_user_id .
Cannot modify header information - headers already sent by
Comment