I am having problems on a particular domain with displaying £ signs.
I believe it is a server issue but the ISP assures me that their servers are working fine.
I have 2 domains with this ISP and one displays £ signs OK but the other one doesn't.
On every other server I have ever used
prints a £ sign no problem.
On one particular server it prints a square box.
In every case, it is printing character 163 but why should there be a difference unless something on the server is different?
Keith
I believe it is a server issue but the ISP assures me that their servers are working fine.
I have 2 domains with this ISP and one displays £ signs OK but the other one doesn't.
On every other server I have ever used
Code:
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
use warnings;
use strict;
use CGI;
use DBI;
print "Content-type: text/html\n\n"; # prepare for HTML output
print "£<br>";
On one particular server it prints a square box.
In every case, it is printing character 163 but why should there be a difference unless something on the server is different?
Keith