Forum Anasayfa

  Portal Anasayfa    AramaArama  Üye ListesiÜye Listesi   Cesur Türk Üye Kayıt Sözleşmesi (Kuralları Okuyunuz) Cesur Türk Üye Kayıt Sözleşmesi (Kuralları Okuyunuz) 
 
Hesabınız Hesabınız   Kişisel Mesajlar Kişisel Mesajlar   Oturum Aç Oturum Aç 
Cevapsız mesajlar

Etiketler: Forum, Başlığında, Son, Mesajı, Görmek
Forum Başlığında Son Mesajı Görmek

 
 

Yeni Başlık Gönder   Cevap Gönder    Forum Anasayfa -> PhpBB
« Önceki başlık :: Sonraki başlık »  
Yazar Mesaj
Sistem
Cesur Türk
Cesur Türk

Durum: Çevrimdışı
Kayıt: 19.01.2006
Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri 
Mesajlar: 12295

Level: 69
Aktiflik: 227 / 566  
 40%
Seviye: 0 / 27802  
 0%
Deneyim: 12835 / 12835  
 100%

MesajTarih: Fri Sep 29, 2006 3:00 pm    Mesaj konusu: Forum Başlığında Son Mesajı Görmek

Kod:
##############################################################
## MOD Başlık:   Forum Başlığında Son Mesajı Görmek
## MOD Yazar:      MandersOnline <mods@mandersonline.nl>
##         http://www.mandersonline.nl/mods
## MODVersion: 1.0.0
## Açıklama:Forum Anasayfasında Forumlardaki Son Mesaji Yazan
##Üyenin Üzerinde Yazdıgı Konu Baslıgınıda Gösterir.
##
## Yükleme Zorluğu:  kolay
## Yükleme Süresi:   2-5 dk.
## Düzenlenecek Dosyalar:         index.php
## Yüklenecek Dosyalar:      0
##############################################################
## Mod Geçmişi:
##         1.0 Release for phpBB 2.0.10
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################

#
#-----[ AÇIN ]------------------------------------------------
#

index.php

#
#-----[ BULUN ]-----------------------------------------
#
         $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
            FROM (( " . FORUMS_TABLE . " f
            LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
            LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
            ORDER BY f.cat_id, f.forum_order";
         break;
   }
   if ( !($result = $db->sql_query($sql)) )
   {
      message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
   }

   $forum_data = array();
   while( $row = $db->sql_fetchrow($result) )
   {
      $forum_data[] = $row;
   }
   $db->sql_freeresult($result);

   if ( !($total_forums = count($forum_data)) )
   {
      message_die(GENERAL_MESSAGE, $lang['No_forums']);
   }

   //
   // Obtain a list of topic ids which contain

#
#-----[ ASAGIDAKİ İLE DEGİSTİRİN ]----------------------------------------
#
       $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id " .
         " FROM ((( " . FORUMS_TABLE . " f " .
         " LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )" .
         " LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id ) " .
         " LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_last_post_id = p.post_id ) " .
         " ORDER BY f.cat_id, f.forum_order";
      break;
   }
   if ( !($result = $db->sql_query($sql)) )
   {
      message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
   }

   $forum_data = array();
   $topic_last_ary = array();
   $i=0;
   while( $row = $db->sql_fetchrow($result) )
   {
      if (!in_array($row['topic_last_post_id'], $topic_last_ary) || $row['topic_last_post_id']==0) {
         $topic_last_ary[i]=$row['topic_last_post_id'];
         $i++;
         $forum_data[] = $row;
      }
   }
   unset($topic_last_ary);
   if ( !($total_forums = count($forum_data)) )
   {
      message_die(GENERAL_MESSAGE, $lang['No_forums']);
   }
   
   //
   // Filter topic_title not allowed to read
   //
   if ( !($userdata['user_level'] == ADMIN && $userdata['session_logged_in']) ) {
      $auth_read_all = array();
      $auth_read_all=auth(AUTH_READ, AUTH_LIST_ALL, $userdata, $forum_data);
      $auth_data = '';
      for($i=0; $i<count($forum_data); $i++)
      {
         if (!$auth_read_all[$forum_data[$i]['forum_id']]['auth_read']) {
            $forum_data[$i]['topic_title']='';
         }
      }
   }

   //
   // Define censored word matches
   //
   $orig_word = array();
   $replacement_word = array();
   obtain_word_list($orig_word, $replacement_word);

   //
   // Obtain a list of topic ids which contain


#
#-----[ BULUN ]-----------------------------------------
#
                     if ( $forum_data[$j]['forum_last_post_id'] )
                     {
                        $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);

                        $last_post = $last_post_time . '<br />';

                        $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
                       
                        $last_post .= '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
                     }


#
#-----[ ASAGIDAKİ İLE DEGİSTİRİN ]---------------------------------
#
                     if ( $forum_data[$j]['forum_last_post_id'] )
                     {
                           $topic_title = $forum_data[$j]['topic_title'];
                           $topic_title2 = $forum_data[$j]['topic_title'];
     
                           //
                           // Censor topic title
                           //
                           if ( count($orig_word) )
                           {
                              $topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
                              $topic_title2 = preg_replace($orig_word, $replacement_word, $topic_title2);
                           }
                             
                           if (strlen($topic_title)>27) {
                              $topic_title = substr($topic_title,0,24) . '...';
                           }
                     
                           $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
                           $last_post = '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
                           $last_post .= $last_post_time . '&nbsp;<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . '&nbsp;';
                           $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
                        }

#-----[ İSLEM TAMAM KAYDET VE KAPAT ]-------------------------------------
# ###### Düzenleme :
Bu forumdaki linkleri sadece kayıtlı kullanıcılar görebilir!
Kayıt olmak içinburaya tıklayınız...
#######
# EoM


En son Sistem tarafından Sun Jun 17, 2007 9:33 pm tarihinde değiştirildi, toplamda 1 kere değiştirildi.
Başa dön
DeLiKuRt29
Vatandaş
Vatandaş

Durum: Çevrimdışı
Kayıt: 29.09.2006
DeLiKuRt29 şu an tarif edilemez bir durumda 
Mesajlar: 4

Level: 1
Aktiflik: 3 / 9  
 33%
Seviye: 0 / 18  
 0%
Deneyim: 120 / 120  
 100%

MesajTarih: Sun Oct 01, 2006 6:32 pm    Mesaj konusu:

tşk eyv
Başa dön
dj_hilmi
Aktif Üye
Aktif  Üye

Durum: Çevrimdışı
Kayıt: 21.08.2006
dj_hilmi şu an tarif edilemez bir durumda 
Mesajlar: 1011
Şehir: dergahü âhrem kapısının yanındaki ev
Level: 28
Aktiflik: 11 / 87  
 12%
Seviye: 0 / 2064  
 0%
Deneyim: 1054 / 1054  
 100%

MesajTarih: Sun Oct 01, 2006 6:46 pm    Mesaj konusu:

teşekküler
Başa dön
qodzilla
Vatandaş
Vatandaş

Durum: Çevrimdışı
Kayıt: 21.01.2006
qodzilla şu an tarif edilemez bir durumda 
Mesajlar: 44

Level: 5
Aktiflik: 6 / 13  
 46%
Seviye: 0 / 85  
 0%
Deneyim: 186 / 186  
 100%

MesajTarih: Thu Oct 05, 2006 9:41 am    Mesaj konusu:

Saol Dostum Wink
Başa dön
asdf29
Cesur Üye
Cesur Üye

Durum: Çevrimdışı
Kayıt: 08.02.2006
asdf29 şu an tarif edilemez bir durumda 
Mesajlar: 125
Şehir: Hizmetten
Level: 10
Aktiflik: 5 / 22  
 22%
Seviye: 0 / 243  
 0%
Deneyim: 255 / 255  
 100%

MesajTarih: Sun Feb 11, 2007 9:21 am    Mesaj konusu:

tşk leeerrrrrr
_________________
asdf29 iz birakir..
Başa dön
Sistem
Cesur Türk
Cesur Türk

Durum: Çevrimdışı
Kayıt: 19.01.2006
Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri 
Mesajlar: 12295

Level: 69
Aktiflik: 227 / 566  
 40%
Seviye: 0 / 27802  
 0%
Deneyim: 12835 / 12835  
 100%

MesajTarih: Sun Jun 17, 2007 9:33 pm    Mesaj konusu:

konu yenilendi
Başa dön
GARDİYAN
Vatandaş
Vatandaş

Durum: Çevrimdışı
Kayıt: 25.05.2007
GARDİYAN yükselmekte olan bir dalın üzerinde 
Mesajlar: 10

Level: 2
Aktiflik: 0 / 8  
 0%
Seviye: 0 / 31  
 0%
Deneyim: 92 / 92  
 100%

MesajTarih: Thu Jul 05, 2007 4:49 pm    Mesaj konusu:

tşk güzel ama nasıl uygulucaz ?



_________________
table width="40%" cellspacing="1" cellpadding="3" border="0">
Bu forumdaki linkleri sadece kayıtlı kullanıcılar görebilir!
Kayıt olmak içinburaya tıklayınız...
Başa dön
Sistem
Cesur Türk
Cesur Türk

Durum: Çevrimdışı
Kayıt: 19.01.2006
Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri Sistem herkes için örnek biri 
Mesajlar: 12295

Level: 69
Aktiflik: 227 / 566  
 40%
Seviye: 0 / 27802  
 0%
Deneyim: 12835 / 12835  
 100%

MesajTarih: Thu Jul 05, 2007 4:56 pm    Mesaj konusu:

gerekli açıklamalar var araştırp öğrenebilirsin..
Başa dön

Yeni Başlık Gönder   Cevap Gönder    Forum Anasayfa -> PhpBB
1. sayfa (Toplam 1 sayfa)

Benzer Başlıklar
Başlık Yazar Forum Cevap Tarih
Yeni mesaj yok Bitefight Oynayanları Burda Görmek İs... Sokrates Sohbet 0 Sat May 10, 2008 6:11 pm Son gönderilen mesajlar
Yeni mesaj yok FORUM ESS ' < .. UYELERIMIZ ILE AR... eeeee Kendi Sitenizin Reklamı 0 Fri Oct 19, 2007 3:50 pm Son gönderilen mesajlar
Yeni mesaj yok İlk kez bir forum sayfasına giriyorum... Ayse Burcu ayda 0 Wed Aug 22, 2007 10:59 pm Son gönderilen mesajlar
Yeni mesaj yok Matracx Forum + Toplist Sistem Kendi Sitenizin Reklamı 2 Tue Jul 24, 2007 12:09 pm Son gönderilen mesajlar
Yeni mesaj yok Sabit: localhostan forum içine allma Merak e... Sistem Mkportal Genel 0 Sun Jul 22, 2007 5:24 pm Son gönderilen mesajlar
Sayfanın En Üstüne Çıkmak İçin BURAYA TIKLA !


Cesur Türk
Bu forum phpBB Tabanlıdır.
Privacy (Gizlilik ilkesi)
Copyright © 2005-2007
All right reserved CesurTurk.Org
Cesur Türk Kullanıcı Gizlilik Koşulları ve Site Kullanım Şartları
Bu sayfada yer alan bilgilerin her hakkı, aksi ayrıca belirtilmediği sürece CesurTurk.Org'ye aittir.
Materyallerimizin izin alınmadan kopyalanması ve kullanılması 5846 sayılı Fikir ve Sanat Eserleri Yasasına göre suçtur.
Sitemizde yer alan yazıların telif hakları yazarların kendilerine veya yetki verdikleri kişilere aittir.
Sitemiz hiç bir şekilde kâr amacı gütmemektedir ve sitemizde yer alan tüm materyaller yalnızca bilgilendirme ve eğitim amacıyla sunulmaktadır.
Misyonumuzu buradan okuyabilirsiniz. Sitemizde yazınız bulunuyorsa ve kaldırılmasını istiyorsanız lütfen iletişim  bölümünden irtibata geçiniz.
Yönetim ve Webtasarım SABQCES tarafından yapılmaktadır.
(( Gücümüzü Türk devletini kuran asil Türk ırkından alıyoruz ))
Genel Site MapUrllistForum SitemapPortal SitemapDownloadsHaberlerYoutubeForum
seo seo danışmanı çiçekçi | matbaa | Çelik Konstrüksiyon | film indir | söve | söve makinası | Forum


Aspen health directory directoryx submitlink Aspen health adult hikaye sikiş videoları porno videoları erotik hikaye erotik hikaye sikis video porno videolari bedava porno porno hikayeleri hikaye seks hikayeleri sikis hikayeleri sikis hikayeleri porno izle