my index page having one test box....After click the submit button it will go to dispay page.....that dispay the texbox vaue.....
I enter the textbox value as "Sé" that display in the display page as Sé.......
how to currect this problem
Transfer special character
Moderator: General Moderators
-
panprasath
- Forum Newbie
- Posts: 19
- Joined: Thu Jul 24, 2008 3:35 am
- Location: Chennai,Tamilnadu,India
Re: Transfer special character
And thus begins my reign of terror over this forum...
Have you set a page encoding? To need to tell the browser that your page is encoded in UTF-8, either with PHP
or HTML
Or run all your form input through utf8_decode.
Have you set a page encoding? To need to tell the browser that your page is encoded in UTF-8, either with PHP
Code: Select all
header("Content-Type: text/html; charset=utf-8");Code: Select all
<html>
<head>
...
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...
</head>