y2ksw
2 small fixes
HTML not valid (& -> &
:
XML, line 351:
PHP Code:
$url = $bburl . '/rbs_banner.php?id=' . $rs['id'] . '&userid=' . $rbs_userid;
replace with&
PHP Code:
$url = $bburl . '/rbs_banner.php?id=' . $rs['id'] . '&userid=' . $rbs_userid;
Charset missed:
rbs_stats.php, add after line 90:
PHP Code:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Or better use as variable instead UTF-8 (value should be as language charset). Also, if language Russian and Charset set to windows-1251:
PHP Code:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
I hope you understand what I mean