I have been learning PHP for a little bit now, and it has been going really easy for the most part. The only thing I\'m hung up on is getting sessions to work. Google has be
You have to call session_start() as early as possible, and definitely before using $_SESSION, which would otherwise be empty.
session_start()
$_SESSION