-3

My site Japanese supported. But Portuguese language cannot fully display

Display on In�Cio Sobre N�S.

I have use for

header('Content-type: text/html; charset=UTF-8') ;

this only Japanese language support.

I need to both languages (Japanese and Portuguese) should be display.

I need to helper for best solution.

Thanks,

devpro
  • 16,184
  • 3
  • 27
  • 38
Renuka s
  • 53
  • 1
  • 5

1 Answers1

-1

You need to encode your file it must be same as your header and charset of Portuguese is that:

Portuguese charset=iso-8859-1

You need to set the meta for Portuguese language as:

<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" /> 

Side note: Make sure your file also encoded as same your meta.

devpro
  • 16,184
  • 3
  • 27
  • 38