Hello,
I am a newbie to php and need some help. I am trying to create a membership site and did so with this tutorial -----> http://www.phpeasystep.com/workshopview.php?id=6 in expression web. Everything seems to work fine except once i try to log in i get this error ----->
Deprecated: Function session_is_registered() is deprecated in D:\Hosting\9866233\html\newlaw\login_success.php on line 13
Login Successful
this is the line/section it is referring to ---->
<?php
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>
Can someone tell me how to fix this so it works, all the other information for the tutorial can be found at the link above or point me to another basic tutorial that actually works Please!!!


