The error is ...
Warning: Undefined offset: 1 in C:\My Documents\WebSites\Human Resources Web\php_scripts\session-inc.php on line 72
function str2arr( $ts )
{
global $session;
$vals = split( "&", $ts );
while( list($key,$val) = each($vals) )
{
list( $name, $wert ) = split( "=", $val ); // This is the line of code.
if( $val ) { eval( "\$$name = \"$wert\";" ); }
}
}