<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Aug 24, 2015 at 9:51 PM, Richard Reina <span dir="ltr"><<a href="mailto:gatorreina@gmail.com" target="_blank">gatorreina@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">When a user signs in I do this to send them to their page with log in.<br><div><br>        # Logged in successfully<br>        session username => $input_hash->{FName};<br>        redirect '/userpage';<br><br></div><div>However, I am wondering how I can pass the username from on sub to another sub call within my MyApp.pm. So that as a user bounces to another page I can do a database query for that user. For example, if the user goes to.<br><br>get '/JobsView' => sub {<br><br></div><div>    #query open jobs for the user<br><br>}<br><br></div><div>How do I get the username inside '/JobsView' so that I can use it for SQL queries?<br><br></div><div>Thanks<br></div></div></blockquote><div><br></div><div>You should be able to access it with the same session keyword:</div><div><br></div><div><font face="monospace, monospace">    get '/JobsView' => sub {</font></div><div><font face="monospace, monospace">        my $username = session 'username';</font></div><div><font face="monospace, monospace">        #query open jobs for the user</font></div><div><font face="monospace, monospace">    }</font></div><div><br></div><div>-Naveed</div><div> </div></div></div></div>