If I just do response->redirect to my desired help content it doesn't work because the help content has not yet been generated this is odd as it does not function that way for other tabs from the database until I click on the help tab i must somehow generate that click request making help tab active does not do it.

I tried hard to parse that, but can't figure out what you are trying to say.

Your subroutine is odd. $topics as a subroutine prototype? I guess you mean

sub tHelp { my $topics = shift; ...

Looking at that snippet

my $startpoint=$topics($topic);'Content/HELP/TPO/default/Tempo_ +help-08-1.html';

I have to ask - what is $topics? a subroutine reference? Then you have to write

my $startpoint=$topics->($topic);

Also, what do you have that string literal in void context for? What is in $topic? where does it come from? Can't see it anywhere else in that sub.

Please reformulate your question and post code which at least compiles, and enough info to avoid wild guesses. See I know what I mean. Why don't you?

--shmem

_($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                              /\_¯/(q    /
----------------------------  \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

In reply to Re: linking into dynamically generated file passing hash value by shmem
in thread linking into dynamically generated file passing hash value by grashoper

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.