how can i set the code page in the heade of the php file?
thnaks in advance
peleg
setting code page in php
Moderator: General Moderators
-
fastfingertips
- Forum Contributor
- Posts: 242
- Joined: Sun Dec 28, 2003 1:40 am
- Contact:
Do you mean like these:
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
// vs.
<?php
header ('Content-Type: text/html; charset=iso-8859-1');
?>