<div dir="ltr"><div><div><div>Hi WK,<br><br></div>Thank you very much for the reply. Before I saw this came up with this solution to pass the variable to the other sub/template:<br><br>  # take them to the add_sport (but with the id no)<br>    hook 'before' => sub {<br>          var S_id => $select_id;<br>          request->path('/sport_add')<br>    };<br><br>    redirect '/sport_add';<br><br></div>It actually worked but I was wondering if doing it this way with hook and redirect is a bad idea?  Also, I was wondering why it's a bad idea to print input from dancer to the console?  Does it produce a security vulnerability or is it merely disruptive to dancer?<br><br></div>Thanks<br><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-08-23 18:08 GMT-05:00 WK <span dir="ltr"><<a href="mailto:wanradt@gmail.com" target="_blank">wanradt@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">2015-08-23 22:31 GMT+03:00 Richard Reina <<a href="mailto:gatorreina@gmail.com">gatorreina@gmail.com</a>>:<br>
<br>
> PLEASE IGNORE MY POST SENT MOMENTS AGO. I WAS NOT FINISHED TYPING.<br>
<br>
</span>I think, in your previous post you were much closer to the needed pattern.<br>
<span class=""><br>
>  post '/mypage' => sub { # let user make a selection<br>
><br>
>     my $select_id = params->{Sselect};<br>
><br>
>     print "\n\nLooks Like They Selected No: $select_id\n\n";<br>
<br>
</span>Printing here is not good idea.<br>
<span class=""><br>
>     # look up DB records corresponding to $select_id;<br>
><br>
>     # store them in hash refrence $sel_ref<br>
<br>
</span>Nope. If you need to store users posted data in DB, you redirect them<br>
afterwards to another route (/sport_add/$sele) and look up from DB<br>
there (get your $self_ref).<br>
<br>
If you don't need to store, you don't have need for post-route at all.<br>
<br>
And your get-route would look like:<br>
<br>
get '/sport_add/:id' => sub {<br>
  my ( $id ) = splat;<br>
  # DB query by ID<br>
  # template call ...<br>
}<br>
<br>
Hope it helps a bit<br>
<br>
wbr,<br>
<span class="HOEnZb"><font color="#888888">--<br>
Kõike hääd,<br>
<br>
Gunnar<br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" rel="noreferrer" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</font></span></blockquote></div><br></div>