can someone give a tutorial of how to hide sid in lavalair..

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

    can someone give a tutorial of how to hide sid in lavalair..

    it is very usefull for a newbie like me.... advanced thanks sir...

    #2
    Originally posted by hi_jakkk View Post
    it is very usefull for a newbie like me.... advanced thanks sir...
    with search i found this http://coding-talk.com/f19/secure-a-...apdesire-5082/
    PHP Code:
    $("#mfreak").find(".head brain").clone(); 
    Progress:
    Code:
    [|||___________________________] : 5%
    Output:
    Code:
    Memory limit reached, unable to complete operation.
    Support answer:
    Code:
    Try using a super uber strong mega computer to reach at least 10%.

    Comment


      #3
      Originally posted by mFreak View Post
      hmm...im sorry sir i think i need to know how to use search box properly

      Comment


        #4
        Yep... I have seen this topic was discussed many time in this form...

        You can store the session in $_SESSION... in your login form, when the user logs in declare a session variable like

        PHP Code:
        $_SESSION['sid'] = $sid// U already have the $sid i think, 
        then in each and every page...at the very begining, put this...

        PHP Code:
        session_start(); 
        then instead of the statement,

        PHP Code:
        $sid $_GET['sid']; 
        use,

        PHP Code:
        $sid $_SESSION['sid']; 
        thats it...that would do the trick..

        Finally, avoid passing the sid in URL, delete every $sid, which use with URL..


        I'm Proud to be a Sri Lankan!

        Comment

        Working...
        X