How to change a users name

1999-10-12 Thread Joshua Gerth
Howdy, After flipping through the Eagle book, perl.apache.org web site and the mailing list archive I did not find any examples of this so I figured I would post the question here. Does anyone know how to change the users name after they have authenticated. I know how to _get_

RE: How to change a users name

1999-10-12 Thread Eric Cholet
how to change the users name after they have authenticated. I know how to _get_ the login name: my $name = $r-connection-user(); but what I would like to run is something like: $r-connection-user( $name ); That works as you wrote it. Try it! Basically, I want users

RE: How to change a users name

1999-10-12 Thread Joshua Gerth
Howdy, After flipping through the Eagle book, perl.apache.org web site and the mailing list archive I did not find any examples of this so I figured I would post the question here. Does anyone know how to change the users name after they have authenticated. I know how

RE: How to change a users name

1999-10-12 Thread Jason Bodnar
$r-connection-user($user); On 12-Oct-99 Joshua Gerth wrote: Howdy, After flipping through the Eagle book, perl.apache.org web site and the mailing list archive I did not find any examples of this so I figured I would post the question here. Does anyone know how to change