Hiding the session

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Hiding the session

    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. .
    It's n0t that i am afraid to die. Its just that if i die, wh0 wilL loVe her as muCh as i Do?

    #2

    Comment


      #3
      uSe CoOKiEs It will be better

      Comment


        #4
        I've read this before, try to search here.
        You can use PHPsession to hide it, or Cookie.
        Both are needs to be cookie enable.

        Or you can also use mod rewrite.
        Did I help you?
        You can help me too
        Your donations will help me finance my studies.

        Comment


          #5
          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


            #6
            They are using session_start() and $_SESSION . Lavalair is good but if your script is moded by different coders your life is like hell... Some edit like pinoygsm has their own sid that save in their database.

            Comment

            Working...
            X