I got this:
<?php
list ($id) = mysql_fetch_row($query);
$time = time();
session_start();
session_register(\"id\", \"username\", \"password\", \"time\");
$id = \"\";
$time = \"\";
$username = \"\";
$password = \"\";
?>
The problem is:
$id and $time are not in the session!
The variables $username and $password are
comming out of an other function but they
are good in the session!
What\'s wrong with $id and $time?