- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
<?
$mytext = iconv('windows-1251', 'utf-8', $mytext);
echo $mytext;
//There is a little problem with iconv in such using
//This code isn't work correctly. Solution is:
$mytext = iconv('windows-1251', 'utf-8', $mytext);
echo $mytext;
?>
guest 14.02.2009 17:53 # 0
В чём прикол?