Hello, how can I output variables with '.' inside?
PERL:
#!/usr/bin/perl -w
use strict;
use Template;
my $template = Template->new();
my $data = {'FORM.Table.0.name' => 'uwe'};
$template->process('varnames.txt', $data)
or die $template->error;
TEMPLATE:
Hallo [% ${'FORM.Table.0.name'} %]!
I have also tried other version, but none did work :-(
Thank you, good bye,
Uwe
