Hi there, i just want to know how to hide the session 100% like in mywap.ph even i logged in there site it only generated a url like mywap.ph/inbox.php?rd=38 or in their menu page mywap.ph/index.php without session?. .how is it. .their script is lavalair m0dded. .how is it guys?. .i hope many knows how to hide the session in lava script. .
Hiding the session
Collapse
X
-
Simple
function login($user, $pass)
{
if($user=="test" and $pass=="1234")
{
$_SESSION['logged'] = true;
$_SESSION['userid'] = userid;
}
else
{
/error
}
}
function isLogged()
{
if(isset($_SESSION['logged']) && $_SESSION['logged']==true)
{
return true;
}
return false;
}
//usage
if(isLogged())
{
display login info
}
else
{
echo display error stuff;
}
// thats it so u dot have to say $_GET['sid'];
lol
Comment
Comment