ПХП в блоках

Главные вкладки

Аватар пользователя bigfoot bigfoot 15 мая 2006 в 13:42

добавляю новый блок - последние сообщения на форуме:

отображение тем идет в виде вопросительных знаков: "?????", как ломать?

error_reporting(0);

$db_host = "195.177.68.78"; // Change this if your MySQL database host is different.
$db_name = "bigfoot"; // Change this to the name of your database.
$db_user = "bigfoot"; // Change this to your database username.
$db_pw = "bft"; // Change this to your database password.

$forum_url = "http://www.cmukraine.org.ua/forum"; // Change this to reflect to your forum's URL.
$forum_id = ""; // If you wish to display the posts from a specific forum, enter the forum id here. Otherwise, leave it blank.
$limit = "20"; // Number of posts displayed.
$titlecolor = "#55789D"; // This is the color of the title.
$postedcolor = "black"; // This is the color of the bottom text.
$txtlimit = "100"; // This is the character limit.

// Connecting to your database
mysql_connect($db_host, $db_user, $db_pw)
OR die ("Cannot connect to your database");
mysql_select_db($db_name) OR die("Cannot connect to your database");

// Below is the beginning of a table. If you feel you don't need it, you may remove it.
echo "

";

if ($forum_id) {
$forumid = "AND forumid=$forum_id";
}

if ($limit) {
$limited = "LIMIT $limit";
}
$thread_sql = mysql_query("SELECT threadid,title,lastpost,lastposter FROM thread WHERE visible=1 AND open=1 $forumid ORDER BY lastpost DESC $limited");

while($thread_get=mysql_fetch_array($thread_sql))
{
$lastpost = $thread_get['lastpost'];
$poster = $thread_get['lastposter'];
$tid = $thread_get['threadid'];
$psql = mysql_query("SELECT postid FROM post WHERE threadid=$tid ORDER BY postid DESC");
$getp=mysql_fetch_array($psql);
$pid = $getp['postid'];
$date2 = date ("j.m.Y, H:i" ,$lastpost);
$title = $thread_get['title'];
$title = substr($title,0,$txtlimit);
echo "

";
}
echo "

$title
$date2 [$poster]

";

?>

Комментарии

Аватар пользователя bigfoot bigfoot 15 мая 2006 в 13:48

_meta http-equiv="Content-Type" content="text/html; charset=utf-8" /_

базу я создавал по-умолчанию на utf, надо было на вин-1251?
или все таки как-то можно из положения выйти?