[geeklog-cvs] geeklog-2/public_html nextpage.php,NONE,1.1

tony at geeklog.net tony at geeklog.net
Sat Jan 11 01:18:42 EST 2003


Update of /usr/cvs/geeklog/geeklog-2/public_html
In directory internal.geeklog.net:/tmp/cvs-serv516

Added Files:
	nextpage.php 
Log Message:
Initial load into geeklog.  This page pulls a user object from the session and prints a few attributes


--- NEW FILE: nextpage.php ---
<?php

require_once('glcore.php');
require_once($_CONF['path_lib'] . 'A_and_A/client/AAUser.class.php');
session_start();

$sessionId = session_id();
 
$user =& $_SESSION['user'];
print 'session ID: ' . $sessionId . '<BR>';
print 'Data from session: <br>';
print 'username: ' . $user->getUserName() . '<br>';
print 'password: ' . $user->getPassword() . '<br>';

//session_destroy();

?>





More information about the geeklog-cvs mailing list