Re: Website encoding

2004-11-27 Thread John Delacour
At 10:33 am +1100 18/11/04, Rick Measham wrote: That being the case, I grab the charset and use Encode's decode function to turn it into 'perl's internal format' .. which in 5.8.5 is utf8 right? I then store that in the db. What happens if you do something like this? : my $uri = 'http://www.lemonde

Re: Website encoding

2004-11-19 Thread Nick Ing-Simmons
Rick Measham <[EMAIL PROTECTED]> writes: >That being the case, I grab the charset and use Encode's decode function >to turn it into 'perl's internal format' .. which in 5.8.5 is utf8 >right? As it happens the answer is "maybe", but it is the _internal_ form it is none of your business ;-) - so

Re: Website encoding

2004-11-17 Thread Masanori HATA
Hello, Rick Measham wrote: > My thought process is to convert them into utf8 and store that in the > database. Then it's just a case of retrieving them later and outputting > them all on one page marked as utf8. > > That being the case, I grab the charset and use Encode's decode function > to tur