inspire Posted September 19, 2007 Share Posted September 19, 2007 when i pass the session , the sesion variable is not display in new-course.php here the code.....pls help i am using php 4.0 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> Quote Link to comment https://forums.phpfreaks.com/topic/69845-session-name-not-display/ Share on other sites More sharing options...
jitesh Posted September 19, 2007 Share Posted September 19, 2007 Check at new-cource.php are you getting set data in session ? <? 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']; header("location:new-cource.php"); exit; } else { session_destroy(); $failed=true; } } <? session_start(); echo "<pre>"; print_r($_SESSION); ?> <!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head> <title></title> </head> <body > <? echo $_SESSION['name']; ?> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/69845-session-name-not-display/#findComment-350861 Share on other sites More sharing options...
inspire Posted September 19, 2007 Author Share Posted September 19, 2007 The session still not display Quote Link to comment https://forums.phpfreaks.com/topic/69845-session-name-not-display/#findComment-350887 Share on other sites More sharing options...
inspire Posted September 19, 2007 Author Share Posted September 19, 2007 Still the new-course.php page not display the session name. Quote Link to comment https://forums.phpfreaks.com/topic/69845-session-name-not-display/#findComment-350888 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.