|
when i pass the session , the sesion variable is not display in new-course.php
here the code.....pls help
page index.php
<?
session_start();
mysql_connect("localhost","trainee","123") or die ("Unable to connect to the server");
mysql_select_db("gddatab");
if(isset($HTTP_POST_VARS['usernameh']))
{
$uname=$HTTP_POST_VARS['usernameh'];
$upass=$HTTP_POST_VARS['passwordh'];
$sql=("select * from user where s_username ='$uname' and s_password ='$upass'");
$result=mysql_query($sql);
$recordset=mysql_fetch_assoc($result);
$recordset_count=mysql_num_rows($result);
if($recordset_count==1)
{
$_SESSION['name'] = $recordset['s_name'];
echo $_SESSION['name'];
echo '<script>window.location.href=\'new-course.php\'</script>';
}
else
{
session_destroy();
$failed=true;
}
}
new-course.php
<? session_start(); ?>
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title></title>
</head>
<body >
<? echo $_SESSION['name']; ?>
</body>
</html>
|