Share Hướng dẫn fix lỗi ký tự tiếng việt trên tiêu đề bài viết cho johncms.

bunvocam9x

bunvocam9x

New Member
Mở Forum/index.php
Tìm
PHP:
if (empty($id)) { 
$textl = '' . $lng['forum'] . ''; 
} else { 
$req = mysql_query("SELECT `text` FROM `forum` WHERE `id`= '" . $id . "'"); 
$res = mysql_fetch_assoc($req); 
$hdr = strtr($res['text'], array( 
'"' => '', 
'&' => '', 
'<' => '', 
'>' => '', 
''' => '' 
)); 
$hdr = mb_substr($hdr, 0, 30); 
$hdr = functions::checkout($hdr); 
$textl = mb_strlen($res['text']) > 30 ? $hdr . '...' : $hdr; 
}
Thay
PHP:
if (empty($id)) { 
$textl = '' . $lng['forum'] . ''; 
} else { 
$req = mysql_query("SELECT `text` FROM `forum` WHERE `id`= '" . $id . "'"); 
$res = mysql_fetch_assoc($req); 
$textl = ''.$res['text'].' - Aloxinh.tk'; 
}
 

Facebook Comments

Similar threads

Admin
Replies
0
Views
2K
AdminAdmin is verified member.
Admin
yoona
Replies
5
Views
5K
AdminAdmin is verified member.
Admin
A
Replies
4
Views
953
anhtho9x
A
Admin
Replies
0
Views
4K
AdminAdmin is verified member.
Admin
Hero
Replies
11
Views
2K
Tamhoangdk
Tamhoangdk
Admin
Replies
0
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
816
AdminAdmin is verified member.
Admin
Back
Top