Ask a Question related to PERL Modules, Design and Development.
-
bpatton #1
Mason sharing variables, rookie alert :)
I have 2 components. One builds a hash. the next needs to read it.
ex: "A" module
<%share>
my %hash = ( 'dogs' => 'ok' ,'cats'=>'maybe');
</%share>
"B" module
<%perl>
my $dogs = $hash{'dogs'};
my $cats = $hash{'cats'};
print "dogs are $dogs and cats are $cats\n";
</%perl>
bpatton Guest
-
Sharing SESSION/CLIENT variables across applications
Yeah, there are several application variables that have the same name between applications. So basically the only way to do it, while keeping... -
Mason Sessions
I'm using sessions from MasonX::Request::WithApacheSession. I'd like to have the session expire when the user closes the browser window. This can... -
Anything like Mason in Ruby?
Hi, I'm interested in server-side dynamic web content. I've had some experience with ColdFusion and Perl. I have a Mason book coming in the... -
Mason, DBI, and DBI::Pg
Heard a lot about Mason, so I'm playing around with it. I builded a Postgresql database, with a simple table with one user in it. I wrote a script... -
sharing variables
I'm developing a user control which contain a web control label, in which I want to share this label with other web forms the user control will be...



Reply With Quote

