Hi all,
I followed the recent thread on Unicode output, but I still have a question. When
writing static XHTML files, I use
to indicate the character set. This works fine.
But when generating output, this method does not work. I have to use:
print $q->header(-type=>'text/html', -charset=>'ut
I'm using these statements in my main program:
use DisplayPCE qw($order $fnx );
...
print join("", map { qq[$_] }
@{$DisplayPCE::order});
...
When I use the debugger, I find that order is
undefined! When I use the browser to view the page,
the value of undef is confirmed.
When I abandon package
Richard Heintze wrote:
I'm using these statements in my main program:
use DisplayPCE qw($order $fnx );
...
print join("", map { qq[$_] }
@{$DisplayPCE::order});
...
When I use the debugger, I find that order is
undefined! When I use the browser to view the page,
the value of undef is confirmed.
Wiggins d'Anconia wrote:
Richard Heintze wrote:
I'm using these statements in my main program:
use DisplayPCE qw($order $fnx );
...
print join("", map { qq[$_] }
@{$DisplayPCE::order});
...
When I use the debugger, I find that order is
undefined! When I use the browser to view the page,
the valu