I think once you've registered a session variabled, it's basically like a super global variable.
session_register('username');
and then all you have to do is:
$username = "something else";
you might wanna use really different variable names for your session vars ($ses_username or something), so they don't get mixed up by variables in your other scripts.