Thadeus Posted October 10, 2010 Share Posted October 10, 2010 Continue from mysql_num_rows() thread which was fixed. I am having a problem with my log in script. Especially with this one below. Please help me in this one. I got this " Deprecated: Function session_register() is deprecated in... " by using this code: " <?php session_start(); if(!session_is_registered($uname)) { header("location: mainpage.php"); } ?> <html> <head> </head> <body> Log in Successful </body> </html> " Any suggestions please, on how to fix it? Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/215522-deprecated-function-session_register-is-deprecated-in/ Share on other sites More sharing options...
PaulRyan Posted October 10, 2010 Share Posted October 10, 2010 Hello Thadeus. Instead of using session_register($uname); Try using... $_SESSION['uname'] = $uname; // Then to call the uname from now on use... $_SESSION['uname']; Use it for setting and getting all session data, just give them all unique names. Hope this helps bud Regards, Paul. Link to comment https://forums.phpfreaks.com/topic/215522-deprecated-function-session_register-is-deprecated-in/#findComment-1120696 Share on other sites More sharing options...
Thadeus Posted October 10, 2010 Author Share Posted October 10, 2010 It is fixed! yay! Thanks a lot PaulRyan. Your solution has been really helpful! Hope that i will be able to assist people here, as well, soon. Link to comment https://forums.phpfreaks.com/topic/215522-deprecated-function-session_register-is-deprecated-in/#findComment-1120698 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.