> HTML::Template works for anything as you all know. The trouble I'm
> having is that WML needs more escaping than good old HTML (WML turned
> out to be a templating language in itself with user agent performing
> simple variable substituition in the document).
>
> As far as I understand the only
I am looking to populate my template loop by assigning it the entire resultset
in one shot as follows:
my $str = "SELECT [EMAIL PROTECTED]:[EMAIL PROTECTED] as row, FROM
WHERE ...";
my $sth = $conn->prepare($st);
$sth->execute();
my $dataArr = $sth->fetchall_arrayref( {} );
$template->param(
Sometime Today, RR cobbled together some glyphs to say:
> The problem I am facing is, If the user refreshes or does anything,
> nothing will happen and everything works fine, but when the user
> places cursor at the address bar and presses Enter, then the page is
> getting redirected to login page
Hi
I am using HTML::Templating system for my project and the requirement
is, URL given at the address bar should not be changed throughout the
application, I could able to achieve this and
works fine for me (I have a login page and users have to login to
access the application).
The problem I am
Good day.
HTML::Template works for anything as you all know. The trouble I'm
having is that WML needs more escaping than good old HTML (WML turned
out to be a templating language in itself with user agent performing
simple variable substituition in the document).
As far as I understand the only w