Php de harici sayfaların karakter kodunu değiştirme
<?php
 $content = @file_get_contents(“http://domain.com/dosya.html”);
 header(“Content-Type: text/xml; charset=utf-8”);
 echo iconv(‘windows-1254’, ‘utf-8’, $content);
 ?>
Php de harici sayfaların karakter kodunu değiştirme
<?php
 $content = @file_get_contents(“http://domain.com/dosya.html”);
 header(“Content-Type: text/xml; charset=utf-8”);
 echo iconv(‘windows-1254’, ‘utf-8’, $content);
 ?>