>Below is how the decide.php script registers the variables.
>
><?
>session_start();
>
>
>if (!$phpsessid)
> {
> session_register("$employee");
session_register('employee');
Right now, you're registering the variable named something like 'Bill Jones'
which isn't even a legal variable name.
--
Like Music? http://l-i-e.com/artists.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

