How do I continue a session from one page to another with PostgreSQL and PHP

Posted by MrEnder on Stack Overflow See other posts from Stack Overflow or by MrEnder
Published on 2010-03-30T02:05:40Z Indexed on 2010/03/30 2:13 UTC
Read the original article Hit count: 330

Filed under:
|
|

Ok I set up a session... but now how do I make it work on my other pages?

I tried doing

@session_start();

if(isset($_SESSION['$userName'])) {

 echo "Your session is running " . $_SESSION['$userName'];

}

© Stack Overflow or respective owner

Related posts about php

Related posts about session