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

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

  • nimeshka
    replied
    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..

    Leave a comment:


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

    Leave a comment:


  • mFreak
    replied
    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/

    Leave a comment:


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

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