Thanks Jerry! This seems much easier.
I do have one little problem now though:
I am able to start the session and register the variable on my initial page, although I'm not 100% positive its being registered properly.
I've got on my (login.php) page:
<?
session_start();
session-register("clientID");
?>
right at the top of the body, before anything else. Then later on down the page I query the database and assign a value from it to the clientID variable. Should I assume that's being registered properly as a session variable?
Because when I move to my (interests.php) page, and do a <? session_start();?> right off the bat(within the body), I can't get a value for my $clientID session variable.
Anyone happen to know what I'm missing by chance?