in reply to cookie set now how can i retreive the value

Simply call it by it's name. Like a dog:
my $spot = $query->cookie('username');
or:
my $fido = $query->cookie( -name => 'username' );
Just don't provide the value parameter.

ar0n ]