setting code page in php
Posted: Sun Jan 11, 2004 2:47 am
how can i set the code page in the heade of the php file?
thnaks in advance
peleg
thnaks in advance
peleg
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
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');
?>