Hocam ornek gosterebilir misiniz acaba?
Örnek olarak aktif websitesi yok ama kodlarını var.
$db_host = "localhost";
$db_name = "root"; // DB Adı.
$db_user = "forum"; // DB Kullanıcı adı.
$db_pw = ""; // DB Şifresi.
$forum_url = "http://siteadresiniz.com/forum"; // Change this to reflect to your forum's URL.
$forum_id = ""; // Eğer tek bir kategoriden çekmesini istiyorsanız kategori id sini yazın, hepsini istiyosanız boş bırakın.
$limit = "10"; // Kaç mesaj şekicek.
$titlecolor = "#FF0000"; // Başlık rengi.
$postedcolor = "#FFFFFF"; // Yazar rengi.
$txtlimit = "100"; // Başlık karakter limiti.
#######################################
// Database'e bağlanıyoruz
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");
// Buradan altında tablo başlıyor.
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 ("m/d/y h:i A" ,$lastpost);
$title = $thread_get['title'];
$title = substr($title,0,$txtlimit);
echo "$title
gönderen: $poster ";
}
echo "
";
?>