class CGI::Session

def [](key)

Retrieve the session data for key +key+.
def [](key)
  @data ||= @dbman.restore
  @data[key]
end