Posted by Marek Kilimajer on 05/20/05 19:48
Mark Sargent wrote:
> Hi All,
>
> how would one get them to display in php pages..? Is it like ASP where
> you have to set a codepage number..? I've set this at the top of my pages,
> <html lang="Shift_JIS">
> and this for the font
> <font type=\"Shift_JIS\">$product_data_output</font>
> I don't claim to know much about HTML either. I'm just building a little
> dynamic site for my company, minus any bells and whistles interface
> wise. Do I have to set something in php/apache for this.? Thanx.
To specify a codepage in html, put correct meta tag in <head> section:
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
[Back to original message]
|